v-ol-map 1.5.9 → 1.5.10
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 +7 -9
- package/lib/ol-map.umd.js +25 -25
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
- 视图 [view](https://pp129.github.io/vue-openlayers-map/MAP.html#view)
|
|
9
9
|
- 地图控件 [controls](https://pp129.github.io/vue-openlayers-map/MAP.html#controls)
|
|
10
10
|
- 地图交互 [interactions](https://pp129.github.io/vue-openlayers-map/MAP.html#interactions)
|
|
11
|
-
-
|
|
11
|
+
- Cesium地图 [cesium](https://pp129.github.io/vue-openlayers-map/MAP.md#cesiumMap) (实验性)
|
|
12
12
|
- 事件 [events](https://pp129.github.io/vue-openlayers-map/MAP.html#events)
|
|
13
13
|
- 可调用方法 [methods](https://pp129.github.io/vue-openlayers-map/MAP.html#methods)
|
|
14
14
|
- 鹰眼 [v-overview](https://pp129.github.io/vue-openlayers-map/OVERVIEW.html)
|
|
@@ -18,31 +18,29 @@
|
|
|
18
18
|
- 聚合 [cluster](https://pp129.github.io/vue-openlayers-map/VECTORLAYER.md#cluster)
|
|
19
19
|
- 瓦片图层 [v-tile](https://pp129.github.io/vue-openlayers-map/TILELAYER.html)
|
|
20
20
|
- 热力图 [v-heatmap](https://pp129.github.io/vue-openlayers-map/HEATMAPLAYER.html)
|
|
21
|
-
- 聚合图层 [v-cluster](https://pp129.github.io/vue-openlayers-map/CLUSTERLAYER.html)
|
|
21
|
+
- 聚合图层 [v-cluster](https://pp129.github.io/vue-openlayers-map/CLUSTERLAYER.html) (使用 [SuperCluster](https://github.com/mapbox/supercluster) 实现)
|
|
22
22
|
- 图形图层 [v-graphic](https://pp129.github.io/vue-openlayers-map/GRAPHICLAYER.html)
|
|
23
23
|
- 路径规划图层 [v-route](https://pp129.github.io/vue-openlayers-map/ROUTELAYER.html)
|
|
24
|
+
- echarts图层 [v-echarts](https://pp129.github.io/vue-openlayers-map/ECHARTSLAYER.html)
|
|
24
25
|
- 弹框 [v-overlay](https://pp129.github.io/vue-openlayers-map/OVERLAY.html)
|
|
25
26
|
- 轨迹动画 [v-track](https://pp129.github.io/vue-openlayers-map/TRACK.html)
|
|
26
27
|
- 绘制 [v-draw](https://pp129.github.io/vue-openlayers-map/DRAW.html)
|
|
27
28
|
- 测量 [v-measure](https://pp129.github.io/vue-openlayers-map/MEASURE.html)
|
|
28
29
|
|
|
29
|
-
## docs
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
## [文档](https://pp129.github.io/vue-openlayers-map/DEV.html)
|
|
32
32
|
|
|
33
|
-
##
|
|
33
|
+
## [在线示例](https://vue-openlayers-map.netlify.app/)
|
|
34
|
+
|
|
35
|
+
## [源码](https://github.com/pp129/vue-openlayers-map)
|
|
34
36
|
|
|
35
37
|
### git clone
|
|
36
38
|
|
|
37
39
|
```bash
|
|
38
|
-
//github
|
|
39
40
|
git clone https://github.com/pp129/vue-openlayers-map.git
|
|
40
|
-
//gitee
|
|
41
|
-
git clone https://gitee.com/ayos-team/vue-openlayers-map.git
|
|
42
41
|
```
|
|
43
42
|
|
|
44
43
|
### 运行
|
|
45
44
|
```bash
|
|
46
45
|
npm run serve
|
|
47
46
|
```
|
|
48
|
-
[live demo](https://vue-openlayers-map.netlify.app)
|