@mapgis/webclient-cesium-plugin 17.0.7 → 17.2.0
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 +9 -45
- package/dist/es5/webclient-cesium-plugin.min.js +6 -6
- package/dist/es5/webclient-common.min.js +15 -4
- package/dist/webclient-cesium-plugin-es6.min.js +6 -6
- package/documention/ArcGISMapServerImageryProvider.html +1 -1
- package/documention/ArcGISVectorTileImageryProvider.html +866 -0
- package/documention/CustomTilingScheme.html +5 -5
- package/documention/GeoJSONLayerUtil.html +1 -1
- package/documention/IGSFeatureLayerUtil.html +1 -1
- package/documention/IGSSceneLayerUtil.html +626 -29
- package/documention/MapGISMapServerImageryProvider.html +7 -7
- package/documention/MapGISTerrainProvider.html +499 -558
- package/documention/MapGISTileServerImageryProvider.html +154 -2
- package/documention/MapGISVectorTileImageryProvider.html +253 -0
- package/documention/SceneViewCesium.html +3 -129
- package/documention/Screenshot.html +0 -11
- package/documention/SketchEditorCesium.html +63 -1
- package/documention/UrlTemplateImageryProvider.html +45 -1
- package/documention/WFSLayerUtil.html +1 -1
- package/documention/WebMapServiceImageryProvider.html +2 -2
- package/documention/WebMapTileServiceImageryProvider.html +55 -2
- package/documention/index.html +5 -5
- package/documention/scripts/sideBar.js +16 -2
- package/package.json +2 -3
|
@@ -632,7 +632,7 @@
|
|
|
632
632
|
<p class="code-caption"><h7>添加一个ArcGIS地图服务:混合接口开发</h7></p>
|
|
633
633
|
|
|
634
634
|
|
|
635
|
-
<pre class="prettyprint"><code>// ES5引入方式
|
|
636
635
|
// 服务基地址
|
|
637
636
|
url: url
|
|
638
637
|
// 获取provider的初始化参数
|
|
639
638
|
const options = initializeOptions(layer, viewer)
|
|
640
639
|
// 构造provider对象
|
|
641
640
|
provider = new Cesium.ArcGisMapServerImageryProvider(options)
|
|
642
641
|
// 添加图层到Cesium视图中
|
|
643
642
|
cesiumLayer = viewer.imageryLayers.addImageryProvider(provider)
|
|
643
|
+
<pre class="prettyprint"><code>// ES5引入方式
|
|
644
644
|
// 服务基地址
|
|
645
645
|
url: url
|
|
646
646
|
// 获取provider的初始化参数
|
|
647
647
|
const options = initializeOptions(layer, viewer)
|
|
648
648
|
// 构造provider对象
|
|
649
649
|
provider = new Cesium.ArcGisMapServerImageryProvider(options)
|
|
650
650
|
// 添加图层到Cesium视图中
|
|
651
651
|
cesiumLayer = viewer.imageryLayers.addImageryProvider(provider)
|
|
652
652
|
|
|
653
653
|
|
|
654
654
|
|