@mapgis/webclient-leaflet-plugin 17.2.0 → 17.2.1
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 +12 -2
- 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
|
@@ -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,16 @@ const mapView = new MapViewLeaflet({
|
|
|
211
211
|
|
|
212
212
|
## 4.1、正式版
|
|
213
213
|
|
|
214
|
+
### v17.2.1
|
|
215
|
+
|
|
216
|
+
**更新说明:**
|
|
217
|
+
|
|
218
|
+
1. 功能优化
|
|
219
|
+
|
|
220
|
+
- 二维(Leaflet)引擎优化命名空间结构
|
|
221
|
+
- 二维(Leaflet)引擎修复已知问题
|
|
222
|
+
|
|
223
|
+
|
|
214
224
|
### v17.2.0
|
|
215
225
|
|
|
216
226
|
**更新说明:**
|