@mapgis/webclient-leaflet-plugin 17.4.0 → 17.4.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.
Files changed (39) hide show
  1. package/README.md +11 -2
  2. package/dist/es5/webclient-common.min.js +35 -3
  3. package/dist/es5/webclient-leaflet-plugin.min.js +1 -1
  4. package/dist/webclient-leaflet-plugin-es6.min.js +1 -1
  5. package/documention/ArcGISMapImageLayer.html +3 -1
  6. package/documention/ArcGISTileLayer.html +3 -1
  7. package/documention/EchartsLayer.html +12 -2
  8. package/documention/FeatureLayer.html +3 -1
  9. package/documention/FeatureLayerUtil.html +3 -1
  10. package/documention/IGSMapImageLayer.html +3 -1
  11. package/documention/IGSTileLayer.html +3 -1
  12. package/documention/L.zondy.MapvBaseLayer.html +3 -1
  13. package/documention/MapLayer.html +3 -1
  14. package/documention/MapVLayer.html +12 -2
  15. package/documention/MapView.html +3745 -3
  16. package/documention/Popup.html +3 -1
  17. package/documention/Screenshot.html +3 -1
  18. package/documention/SketchEditor.html +3211 -0
  19. package/documention/TileLayer.html +3 -1
  20. package/documention/TileLayerWMS.html +3 -1
  21. package/documention/VectorTileLayer.html +3 -1
  22. package/documention/WMSLayerView.html +3 -1
  23. package/documention/WebMapServiceLayer.html +3 -1
  24. package/documention/WebMapTileServiceLayer.html +3 -1
  25. package/documention/WebTileLayer.html +3 -1
  26. package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +3 -1
  27. package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +3 -1
  28. package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +3 -1
  29. package/documention/Zondy.ThemeLayer.ThemeLayer.html +3 -1
  30. package/documention/Zondy.ThemeLayer.ThemeStyle.html +3 -1
  31. package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +3 -1
  32. package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +3 -1
  33. package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +3 -1
  34. package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +3 -1
  35. package/documention/Zondy.Widget.html +3 -1
  36. package/documention/Zondy.view.UI.html +3 -1
  37. package/documention/global.html +3 -1
  38. package/documention/index.html +3 -1
  39. package/package.json +1 -1
package/README.md CHANGED
@@ -187,7 +187,7 @@ npm install @mapgis/webclient-leaflet-plugin
187
187
  **引入需要的构造函数**
188
188
 
189
189
  ```typescript
190
- import { MapViewLeaflet } from '@mapgis/webclient-leaflet-plugin'
190
+ import { MapView } from '@mapgis/webclient-leaflet-plugin'
191
191
  import { Map } from "@mapgis/webclient-common"
192
192
  ```
193
193
 
@@ -197,7 +197,7 @@ import { Map } from "@mapgis/webclient-common"
197
197
  // 初始化图层管理容器
198
198
  const map = new Map();
199
199
  // 初始化地图视图对象
200
- const mapView = new MapViewLeaflet({
200
+ const mapView = new MapView({
201
201
  // 视图id
202
202
  viewId: "你的地图视图的id",
203
203
  // 图层管理容器
@@ -211,6 +211,15 @@ const mapView = new MapViewLeaflet({
211
211
 
212
212
  ## 4.1、正式版
213
213
 
214
+ ### v17.4.1
215
+
216
+ **更新说明:**
217
+
218
+ 1. 功能优化
219
+
220
+ - 修复API文档中部分接口文档缺失的问题
221
+ - 优化视图截图功能
222
+
214
223
  ### v17.4.0
215
224
 
216
225
  **更新说明:**