@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
|
@@ -781,12 +781,12 @@
|
|
|
781
781
|
|
|
782
782
|
|
|
783
783
|
<pre class="prettyprint"><code>// ES5引入方式
|
|
784
|
-
const { MapGISMapServerImageryProvider } =
|
|
784
|
+
const { MapGISMapServerImageryProvider } = zondy
|
|
785
785
|
// ES6引入方式
|
|
786
786
|
import { MapGISMapServerImageryProvider } from "@mapgis/webclient-cesium-plugin"
|
|
787
787
|
|
|
788
788
|
// 定义IGS地图图片图层服务的基地址
|
|
789
|
-
const url = 'http://
|
|
789
|
+
const url = 'http://webclient.smaryun.com:8089/igs/rest/services/Map/湖北省4326/MapServer'
|
|
790
790
|
|
|
791
791
|
// 添加IGS地图图片图层
|
|
792
792
|
async function addIGSMapImageLayer(url) {
|
|
@@ -801,15 +801,15 @@ addIGSMapImageLayer(url)</code></pre>
|
|
|
801
801
|
|
|
802
802
|
|
|
803
803
|
<pre class="prettyprint"><code>// ES5引入方式
|
|
804
|
-
const { MapGISMapServerImageryProvider } =
|
|
805
|
-
const { IGSMapImageLayer } =
|
|
806
|
-
const { initializeOptions } =
|
|
804
|
+
const { MapGISMapServerImageryProvider } = zondy
|
|
805
|
+
const { IGSMapImageLayer } = zondy.Layer
|
|
806
|
+
const { initializeOptions } = zondy.cesium.util
|
|
807
807
|
// ES6引入方式
|
|
808
808
|
import { MapGISMapServerImageryProvider, initializeOptions } from "@mapgis/webclient-cesium-plugin"
|
|
809
809
|
import { IGSMapImageLayer } from "@mapgis/webclient-common"
|
|
810
810
|
|
|
811
811
|
// 定义IGS地图图片图层服务的基地址
|
|
812
|
-
const url = 'http://
|
|
812
|
+
const url = 'http://webclient.smaryun.com:8089/igs/rest/services/Map/湖北省4326/MapServer'
|
|
813
813
|
|
|
814
814
|
// 创建地图图片图层对象
|
|
815
815
|
igsMapImageLayer = new IGSMapImageLayer({
|
|
@@ -831,7 +831,7 @@ igsMapImageLayer.load().then((layer) => {
|
|
|
831
831
|
|
|
832
832
|
|
|
833
833
|
<pre class="prettyprint"><code>// ES5引入方式
|
|
834
|
-
const { MapGISMapServerImageryProvider } =
|
|
834
|
+
const { MapGISMapServerImageryProvider } = zondy
|
|
835
835
|
// ES6引入方式
|
|
836
836
|
import { MapGISMapServerImageryProvider } from "@mapgis/webclient-cesium-pulgin-mini"
|
|
837
837
|
|