@mapgis/webclient-mapboxgl-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.
- package/README.md +22 -2
- package/dist/es5/webclient-common.min.js +37 -5
- package/dist/es5/webclient-mapboxgl-plugin.min.js +1 -1
- package/dist/webclient-mapboxgl-plugin-es6.min.js +1 -1
- package/documention/EchartsLayer.html +180 -20
- package/documention/MapView.html +4299 -0
- package/documention/MapViewMapboxgl.html +283 -931
- package/documention/Popup.html +200 -284
- package/documention/Screenshot.html +183 -134
- package/documention/SketchEditor.html +3210 -0
- package/documention/SketchEditorMapboxgl.html +241 -477
- package/documention/global.html +4970 -6
- package/documention/index.html +13 -14
- package/documention/module-%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%8F%AF%E8%A7%86%E5%8C%96.MapvLayer.html +182 -27
- package/documention/scripts/search.js +1 -26
- package/documention/styles/app.min.css +1 -1
- package/documention/tutorial-1./345/277/253/351/200/237/345/205/245/351/227/250.html +152 -7
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -188,7 +188,7 @@ npm install @mapgis/webclient-mapboxgl-plugin
|
|
|
188
188
|
**引入需要的构造函数**
|
|
189
189
|
|
|
190
190
|
```typescript
|
|
191
|
-
import {
|
|
191
|
+
import { MapView } from '@mapgis/webclient-mapboxgl-plugin'
|
|
192
192
|
import { Map } from "@mapgis/webclient-common"
|
|
193
193
|
```
|
|
194
194
|
|
|
@@ -198,7 +198,7 @@ import { Map } from "@mapgis/webclient-common"
|
|
|
198
198
|
// 初始化图层管理容器
|
|
199
199
|
const map = new Map();
|
|
200
200
|
// 初始化地图视图对象
|
|
201
|
-
const mapView = new
|
|
201
|
+
const mapView = new MapView({
|
|
202
202
|
// 视图id
|
|
203
203
|
viewId: "你的地图视图的id",
|
|
204
204
|
// 图层管理容器
|
|
@@ -212,6 +212,26 @@ const mapView = new MapViewMapboxgl({
|
|
|
212
212
|
|
|
213
213
|
## 4.1、正式版
|
|
214
214
|
|
|
215
|
+
### v17.4.1
|
|
216
|
+
|
|
217
|
+
**更新说明:**
|
|
218
|
+
|
|
219
|
+
1. 功能优化
|
|
220
|
+
|
|
221
|
+
- 修复API文档中部分接口文档缺失的问题
|
|
222
|
+
|
|
223
|
+
### v17.4.0
|
|
224
|
+
|
|
225
|
+
**更新说明:**
|
|
226
|
+
|
|
227
|
+
1. 功能新增
|
|
228
|
+
|
|
229
|
+
- 此版本无更新
|
|
230
|
+
|
|
231
|
+
2. 功能优化
|
|
232
|
+
|
|
233
|
+
- 此版本无更新
|
|
234
|
+
|
|
215
235
|
### v17.2.8
|
|
216
236
|
|
|
217
237
|
**更新说明:**
|