@mapgis/webclient-leaflet-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 +22 -4
- package/dist/es5/webclient-common.min.js +5 -5
- package/dist/es5/webclient-leaflet-plugin.min.js +6 -6
- package/dist/webclient-leaflet-plugin-es6.min.js +6 -6
- package/documention/ArcGISMapImageLayer.html +820 -0
- package/documention/ArcGISTileLayer.html +498 -0
- package/documention/EchartsLayer.html +261 -0
- package/documention/FeatureLayer.html +212 -0
- package/documention/FeatureLayerUtil.html +288 -0
- package/documention/IGSMapImageLayer.html +948 -0
- package/documention/IGSTileLayer.html +562 -0
- package/documention/MapLayer.html +330 -0
- package/documention/MapVLayer.html +320 -0
- package/documention/MapViewLeaflet.html +7 -7
- package/documention/Popup.html +4 -2
- package/documention/Screenshot.html +5 -3
- package/documention/SketchEditorLeaflet.html +76 -46
- package/documention/TileLayer.html +279 -0
- package/documention/TileLayerWMS.html +222 -0
- package/documention/VectorTileLayer.html +529 -0
- package/documention/WMSLayerView.html +689 -0
- package/documention/WebMapServiceLayer.html +723 -0
- package/documention/WebMapTileServiceLayer.html +754 -0
- package/documention/WebTileLayer.html +663 -0
- package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +22 -22
- package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +30 -30
- package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +34 -34
- package/documention/Zondy.ThemeLayer.ThemeLayer.html +3 -3
- package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +34 -34
- package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +47 -47
- package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +33 -33
- package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +30 -30
- package/documention/Zondy.Widget.html +5 -5
- package/documention/global.html +454 -0
- package/documention/index.html +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -44,13 +44,13 @@ npm install @mapgis/webclient-leaflet-plugin
|
|
|
44
44
|
1.在该网页中请先选择要下载的版本
|
|
45
45
|
|
|
46
46
|
<center>
|
|
47
|
-
<img src="http://
|
|
47
|
+
<img src="http://webclient.smaryun.com/static/modules/leaflet/source/img/开发指南_1.png" style="zoom:100%;" />
|
|
48
48
|
</center>
|
|
49
49
|
|
|
50
50
|
2.之后点击相应的版本号,在右侧点击下载按钮,下载压缩包
|
|
51
51
|
|
|
52
52
|
<center>
|
|
53
|
-
<img src="http://
|
|
53
|
+
<img src="http://webclient.smaryun.com/static/modules/leaflet/source/img/开发指南_2.png" style="zoom:100%;" />
|
|
54
54
|
</center>
|
|
55
55
|
|
|
56
56
|
**开发包位于如下文件夹中**
|
|
@@ -145,9 +145,9 @@ npm install @mapgis/webclient-leaflet-plugin
|
|
|
145
145
|
</style>
|
|
146
146
|
<script>
|
|
147
147
|
// 初始化图层管理容器
|
|
148
|
-
const map = new
|
|
148
|
+
const map = new zondy.Map()
|
|
149
149
|
// 初始化地图视图对象
|
|
150
|
-
const mapView = new
|
|
150
|
+
const mapView = new zondy.leaflet.MapView({
|
|
151
151
|
// 视图id
|
|
152
152
|
viewId: '你的地图视图的id',
|
|
153
153
|
// 图层管理容器
|
|
@@ -211,6 +211,24 @@ const mapView = new MapViewLeaflet({
|
|
|
211
211
|
|
|
212
212
|
## 4.1、正式版
|
|
213
213
|
|
|
214
|
+
### v17.2.2
|
|
215
|
+
|
|
216
|
+
**更新说明:**
|
|
217
|
+
|
|
218
|
+
1. 功能优化
|
|
219
|
+
|
|
220
|
+
- 二维(Leaflet)引擎修复已知问题
|
|
221
|
+
|
|
222
|
+
### v17.2.1
|
|
223
|
+
|
|
224
|
+
**更新说明:**
|
|
225
|
+
|
|
226
|
+
1. 功能优化
|
|
227
|
+
|
|
228
|
+
- 二维(Leaflet)引擎优化命名空间结构
|
|
229
|
+
- 二维(Leaflet)引擎修复已知问题
|
|
230
|
+
|
|
231
|
+
|
|
214
232
|
### v17.2.0
|
|
215
233
|
|
|
216
234
|
**更新说明:**
|