@mapgis/webclient-leaflet-plugin 17.4.0 → 17.4.8
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 +60 -2
- package/dist/es5/webclient-common.min.js +37 -5
- package/dist/es5/webclient-leaflet-plugin.min.js +3 -3
- package/dist/webclient-leaflet-plugin-es6.min.js +7 -7
- package/documention/ArcGISMapImageLayer.html +5 -3
- package/documention/ArcGISTileLayer.html +5 -3
- package/documention/EchartsLayer.html +14 -4
- package/documention/FeatureLayer.html +5 -3
- package/documention/FeatureLayerUtil.html +5 -3
- package/documention/IGSImageryLayer.html +851 -0
- package/documention/IGSImageryTileLayer.html +741 -0
- package/documention/IGSMapImageLayer.html +5 -3
- package/documention/IGSTileLayer.html +5 -3
- package/documention/L.zondy.MapvBaseLayer.html +9 -3
- package/documention/MapLayer.html +5 -3
- package/documention/MapVLayer.html +14 -4
- package/documention/MapView.html +3752 -9
- package/documention/MapViewLeaflet.html +1413 -369
- package/documention/Popup.html +6 -4
- package/documention/Screenshot.html +5 -3
- package/documention/SketchEditor.html +3211 -0
- package/documention/SketchEditorLeaflet.html +477 -241
- package/documention/TileLayer.html +79 -3
- package/documention/TileLayerWMS.html +5 -3
- package/documention/VectorTileLayer.html +5 -3
- package/documention/WMSLayerView.html +5 -3
- package/documention/WebMapServiceLayer.html +5 -3
- package/documention/WebMapTileServiceLayer.html +5 -3
- package/documention/WebTileLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.GeoFeatureThemeLayer.html +9 -3
- package/documention/Zondy.ThemeLayer.GraphThemeLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.RandomThemeLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.ThemeLayer.html +9 -3
- package/documention/Zondy.ThemeLayer.ThemeStyle.html +9 -3
- package/documention/Zondy.ThemeLayer.rangeThemeLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.rankSymbolThemeLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.simpleThemeLayer.html +5 -3
- package/documention/Zondy.ThemeLayer.uniqueThemeLayer.html +5 -3
- package/documention/Zondy.Widget.html +5 -3
- package/documention/Zondy.view.UI.html +9 -3
- package/documention/global.html +194 -334
- package/documention/index.html +5 -3
- package/documention/initializeOptions.html +384 -0
- 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 {
|
|
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
|
|
200
|
+
const mapView = new MapView({
|
|
201
201
|
// 视图id
|
|
202
202
|
viewId: "你的地图视图的id",
|
|
203
203
|
// 图层管理容器
|
|
@@ -211,6 +211,64 @@ const mapView = new MapViewLeaflet({
|
|
|
211
211
|
|
|
212
212
|
## 4.1、正式版
|
|
213
213
|
|
|
214
|
+
### v17.4.8
|
|
215
|
+
|
|
216
|
+
**更新说明:**
|
|
217
|
+
|
|
218
|
+
1. 功能优化
|
|
219
|
+
|
|
220
|
+
- 此版本无更新
|
|
221
|
+
|
|
222
|
+
### v17.4.7
|
|
223
|
+
|
|
224
|
+
**更新说明:**
|
|
225
|
+
|
|
226
|
+
1. 功能优化
|
|
227
|
+
|
|
228
|
+
- 修复leaflet-plugin混合加载的方式去加载动态服务显示异常的问题
|
|
229
|
+
|
|
230
|
+
### v17.4.6
|
|
231
|
+
|
|
232
|
+
**更新说明:**
|
|
233
|
+
|
|
234
|
+
1. 功能优化
|
|
235
|
+
|
|
236
|
+
- 此版本无更新
|
|
237
|
+
|
|
238
|
+
**更新说明:**
|
|
239
|
+
|
|
240
|
+
1. 功能优化
|
|
241
|
+
|
|
242
|
+
- 此版本无更新
|
|
243
|
+
|
|
244
|
+
### v17.4.4
|
|
245
|
+
|
|
246
|
+
**更新说明:**
|
|
247
|
+
|
|
248
|
+
- 修复 IGSMapImageLayer 图层动态出图级别受限问题
|
|
249
|
+
|
|
250
|
+
### v17.4.3
|
|
251
|
+
|
|
252
|
+
**更新说明:**
|
|
253
|
+
|
|
254
|
+
- 此版本无更新
|
|
255
|
+
|
|
256
|
+
### v17.4.2
|
|
257
|
+
|
|
258
|
+
**更新说明:**
|
|
259
|
+
|
|
260
|
+
- 此版本无更新
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### v17.4.1
|
|
264
|
+
|
|
265
|
+
**更新说明:**
|
|
266
|
+
|
|
267
|
+
1. 功能优化
|
|
268
|
+
|
|
269
|
+
- 修复API文档中部分接口文档缺失的问题
|
|
270
|
+
- 优化视图截图功能
|
|
271
|
+
|
|
214
272
|
### v17.4.0
|
|
215
273
|
|
|
216
274
|
**更新说明:**
|