@mapgis/webclient-cesium-plugin 17.2.0 → 17.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -5
- package/dist/es5/webclient-cesium-plugin.min.js +4 -4
- package/dist/es5/webclient-common.min.js +5 -5
- package/dist/webclient-cesium-plugin-es6.min.js +4 -4
- package/documention/ArcGISMapServerImageryProvider.html +2 -2
- package/documention/ArcGISTileServerImageryProvider.html +2 -2
- package/documention/CustomTilingScheme.html +1 -1
- package/documention/GeoJSONLayerUtil.html +1 -1
- package/documention/IGSFeatureLayerUtil.html +1 -1
- package/documention/IGSSceneLayerUtil.html +29 -626
- package/documention/ISSceneLayerUtil.html +1131 -0
- package/documention/MapGISMapServerImageryProvider.html +7 -7
- package/documention/MapGISTerrainProvider.html +7540 -1054
- package/documention/MapGISTileServerImageryProvider.html +2 -2
- package/documention/MapGISVectorTileImageryProvider.html +1 -1
- package/documention/Popup.html +5 -3
- package/documention/S3MTileset.html +235 -0
- package/documention/SceneViewCesium.html +14 -14
- package/documention/Screenshot.html +6 -4
- package/documention/SketchEditorCesium.html +14 -10
- package/documention/WFSLayerUtil.html +1 -1
- package/documention/WebMapServiceImageryProvider.html +2 -2
- package/documention/WebMapTileServiceImageryProvider.html +2 -2
- package/documention/index.html +4 -4
- package/documention/module-%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%8F%AF%E8%A7%86%E5%8C%96.MapVLayer.html +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ npm install @mapgis/webclient-cesium-plugin
|
|
|
37
37
|
|
|
38
38
|
* 其中@mapgis/cesium库,目前版本仅支持ES5的打包方式,因此请以NPM的方式下载开发包,npm安装完成后,请将开发包从node_modules里的@mapgis/cesium文件夹里拷贝出来,放入项目的静态资源目录中
|
|
39
39
|
<center>
|
|
40
|
-
<img src="http://
|
|
40
|
+
<img src="http://webclient.smaryun.com/static/modules/cesium/source/img/开发指南_3.png" style="zoom:100%;" />
|
|
41
41
|
</center>
|
|
42
42
|
|
|
43
43
|
|
|
@@ -54,14 +54,14 @@ npm install @mapgis/webclient-cesium-plugin
|
|
|
54
54
|
1.在该网页中请先选择要下载的版本
|
|
55
55
|
|
|
56
56
|
<center>
|
|
57
|
-
<img src="http://
|
|
57
|
+
<img src="http://webclient.smaryun.com/static/modules/cesium/source/img/开发指南_1.png" style="zoom:100%;" />
|
|
58
58
|
</center>
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
2.点击相应的版本号,在右侧点击下载按钮,下载压缩包
|
|
62
62
|
|
|
63
63
|
<center>
|
|
64
|
-
<img src="http://
|
|
64
|
+
<img src="http://webclient.smaryun.com/static/modules/cesium/source/img/开发指南_2.png" style="zoom:100%;" />
|
|
65
65
|
</center>
|
|
66
66
|
|
|
67
67
|
|
|
@@ -182,9 +182,9 @@ npm install @mapgis/webclient-cesium-plugin
|
|
|
182
182
|
</style>
|
|
183
183
|
<script>
|
|
184
184
|
//初始化图层管理容器
|
|
185
|
-
const map = new
|
|
185
|
+
const map = new zondy.Map();
|
|
186
186
|
//初始化场景视图对象
|
|
187
|
-
const sceneView = new
|
|
187
|
+
const sceneView = new zondy.SceneView({
|
|
188
188
|
//视图id
|
|
189
189
|
viewId: "你的场景视图的id",
|
|
190
190
|
//图层管理容器
|
|
@@ -266,6 +266,24 @@ const sceneView = new SceneView({
|
|
|
266
266
|
|
|
267
267
|
## 4.1、正式版
|
|
268
268
|
|
|
269
|
+
### v17.2.2
|
|
270
|
+
|
|
271
|
+
**更新说明:**
|
|
272
|
+
|
|
273
|
+
1. 功能优化
|
|
274
|
+
|
|
275
|
+
- 三维(Cesium)引擎修复已知问题
|
|
276
|
+
|
|
277
|
+
### v17.2.1
|
|
278
|
+
|
|
279
|
+
**更新说明:**
|
|
280
|
+
|
|
281
|
+
1. 功能优化
|
|
282
|
+
|
|
283
|
+
- 三维(Cesium)引擎优化命名空间结构
|
|
284
|
+
- 三维(Cesium)引擎修复已知问题
|
|
285
|
+
|
|
286
|
+
|
|
269
287
|
### v17.2.0
|
|
270
288
|
|
|
271
289
|
**更新说明:**
|