@mapgis/webclient-leaflet-plugin 17.2.8 → 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 (46) hide show
  1. package/README.md +24 -2
  2. package/dist/es5/webclient-common.min.js +37 -5
  3. package/dist/es5/webclient-leaflet-plugin.min.js +1 -1
  4. package/dist/webclient-leaflet-plugin-es6.min.js +4 -4
  5. package/documention/ArcGISMapImageLayer.html +197 -122
  6. package/documention/ArcGISTileLayer.html +187 -62
  7. package/documention/EchartsLayer.html +189 -21
  8. package/documention/FeatureLayer.html +178 -8
  9. package/documention/FeatureLayerUtil.html +178 -34
  10. package/documention/IGSMapImageLayer.html +201 -146
  11. package/documention/IGSTileLayer.html +191 -86
  12. package/documention/L.zondy.MapvBaseLayer.html +189 -96
  13. package/documention/MapLayer.html +183 -38
  14. package/documention/MapVLayer.html +191 -33
  15. package/documention/MapView.html +6189 -0
  16. package/documention/MapViewLeaflet.html +366 -1410
  17. package/documention/Popup.html +200 -284
  18. package/documention/Screenshot.html +183 -134
  19. package/documention/SketchEditor.html +3211 -0
  20. package/documention/SketchEditorLeaflet.html +241 -477
  21. package/documention/TileLayer.html +182 -32
  22. package/documention/TileLayerWMS.html +180 -20
  23. package/documention/VectorTileLayer.html +188 -68
  24. package/documention/WMSLayerView.html +190 -121
  25. package/documention/WebMapServiceLayer.html +194 -104
  26. package/documention/WebMapTileServiceLayer.html +195 -110
  27. package/documention/WebTileLayer.html +192 -92
  28. package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +290 -658
  29. package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +324 -870
  30. package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +305 -736
  31. package/documention/Zondy.ThemeLayer.ThemeLayer.html +247 -483
  32. package/documention/Zondy.ThemeLayer.ThemeStyle.html +234 -866
  33. package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +304 -792
  34. package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +341 -941
  35. package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +302 -720
  36. package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +299 -759
  37. package/documention/Zondy.Widget.html +185 -48
  38. package/documention/Zondy.view.UI.html +182 -31
  39. package/documention/global.html +11448 -131
  40. package/documention/index.html +15 -16
  41. package/documention/scripts/search.js +1 -26
  42. package/documention/styles/app.min.css +1 -1
  43. package/documention/tutorial-1./345/277/253/351/200/237/345/205/245/351/227/250.html +152 -7
  44. package/documention/tutorial-2.1M3D/350/246/201/347/264/240/351/200/211/345/217/226.html +153 -8
  45. package/documention/tutorial-2.2M3D/351/222/273/345/255/224/345/211/226/345/210/207.html +153 -8
  46. package/package.json +7 -8
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,28 @@ 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
+
223
+ ### v17.4.0
224
+
225
+ **更新说明:**
226
+
227
+ 1. 功能新增
228
+
229
+ - 矢量瓦片支持设置请求头
230
+
231
+ 2. 功能优化
232
+
233
+ - 优化聚合效果
234
+ - 修复文字注记转换问题
235
+
214
236
  ### v17.2.8
215
237
 
216
238
  **更新说明:**