@mapgis/webclient-vue-cesium 10.5.5-1 → 10.5.5-6
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 +46 -49
- package/dist-libs/webclient-vue-cesium.common.js +191087 -0
- package/dist-libs/webclient-vue-cesium.css +1 -1
- package/dist-libs/webclient-vue-cesium.umd.js +191097 -0
- package/dist-libs/webclient-vue-cesium.umd.min.js +204 -194
- package/docs/.vuepress/config.js +47 -46
- package/docs/README.md +5 -4
- package/docs/api/analysis/Aspect.md +236 -0
- package/docs/api/analysis/Contour.md +240 -0
- package/docs/api/analysis/CutFill.md +306 -0
- package/docs/api/analysis/DynamicSection.md +336 -0
- package/docs/api/analysis/Excavate.md +3 -11
- package/docs/api/analysis/Flood.md +177 -200
- package/docs/api/analysis/HeightLimited.md +7 -4
- package/docs/api/analysis/ParticleEffects.md +549 -0
- package/docs/api/analysis/Profile.md +464 -0
- package/docs/api/analysis/Shadow.md +76 -13
- package/docs/api/analysis/Sightline.md +66 -13
- package/docs/api/analysis/Skyline.md +144 -29
- package/docs/api/analysis/Slope.md +236 -0
- package/docs/api/analysis/Viewshed.md +100 -21
- package/docs/api/layer/IGServer/IgsDocLayer.md +10 -0
- package/docs/api/layer/IGServer/IgsFeatureLayer.md +253 -0
- package/docs/api/layer/IGServer/IgsTileLayer.md +11 -0
- package/docs/api/layer/OGC/CesiumOgcWmsLayer.md +20 -19
- package/docs/api/layer/OGC/Wms.png +0 -0
- package/docs/api/layer/marker/DynamicMarker.md +81 -0
- package/docs/api/layer/marker/dynamicmarker.png +0 -0
- package/docs/api/layer/marker/selects.png +0 -0
- package/docs/api/layer/vectortile/vectortile.md +10 -0
- package/docs/api/m3d/image/layer_control_1.png +0 -0
- package/docs/api/m3d/image/layer_control_2.png +0 -0
- package/docs/api/m3d/image/layer_control_3.png +0 -0
- package/docs/api/m3d/m3d.md +13 -2
- package/docs/api/service/comprehensiveQuery/comprehensiveQuery.md +946 -0
- package/docs/api/ui/draw.md +68 -40
- package/docs/api/ui/link.md +8 -1
- package/docs/api/ui/marker.md +19 -1
- package/docs/api/ui/measure.md +82 -10
- package/docs/api/ui/table.md +6 -6
- package/docs/guide/README.md +26 -23
- package/docs/guide/basemap.md +35 -33
- package/docs/guide/markers&popups.md +46 -53
- package/docs/plugin_components/create_storybook.md +241 -0
- package/docs/plugin_components/img.png +0 -0
- package/docs/plugin_components/img_1.png +0 -0
- package/docs/plugin_components/img_10.png +0 -0
- package/docs/plugin_components/img_2.png +0 -0
- package/docs/plugin_components/img_3.png +0 -0
- package/docs/plugin_components/img_4.png +0 -0
- package/docs/plugin_components/img_5.png +0 -0
- package/docs/plugin_components/img_6.png +0 -0
- package/docs/plugin_components/img_7.png +0 -0
- package/docs/plugin_components/img_8.png +0 -0
- package/docs/version/diff.md +4 -4
- package/docs/version/version.md +81 -0
- package/package.json +5 -5
- package/src/cdn/cdn_component.js +62 -0
- package/src/component.js +20 -2
- package/src/components/Analysis/Aspect.vue +318 -0
- package/src/components/Analysis/Contour.vue +257 -0
- package/src/components/Analysis/CutFill.vue +581 -0
- package/src/components/Analysis/DynamicCutting.vue +98 -59
- package/src/components/Analysis/DynamicSection.vue +494 -0
- package/src/components/Analysis/Excavate.vue +133 -87
- package/src/components/Analysis/Flood.vue +395 -487
- package/src/components/Analysis/Flood.vue-- +630 -0
- package/src/components/Analysis/HeightLimited.vue +66 -47
- package/src/components/Analysis/ModelFlatten.vue +2 -2
- package/src/components/Analysis/Profile.vue +503 -0
- package/src/components/Analysis/Shadow.vue +220 -309
- package/src/components/Analysis/Sightline.vue +393 -375
- package/src/components/Analysis/SkyLine.vue +283 -93
- package/src/components/Analysis/Slope.vue +317 -0
- package/src/components/Analysis/Viewshed.vue +806 -373
- package/src/components/Analysis/skyline2dChartOptions.js +66 -0
- package/src/components/DataSource/Geojson/GeoJsonDataSource.vue +201 -3
- package/src/components/Layer/GeoJSON/GeoJsonLayer.vue +345 -0
- package/src/components/Layer/IGServer/IgsFeatureLayer.vue +227 -0
- package/src/components/Layer/Marker/DynamicMarkerLayer.vue +487 -0
- package/src/components/Layer/Marker/Marker3dPro.vue +196 -0
- package/src/components/Layer/Marker/Marker3dSetPro.vue +67 -0
- package/src/components/Layer/VectorTile/VectorTileLayer.vue +117 -33
- package/src/components/Layer/VectorTile/VectorTileOptions.js +1 -1
- package/src/components/M3D/3DTilesetOptions.js +23 -1
- package/src/components/M3D/G3D.vue +150 -0
- package/src/components/M3D/M3d.vue +142 -32
- package/src/components/M3D/M3dSet.vue +118 -0
- package/src/components/M3D/M3dType.js +24 -0
- package/src/components/Overlay/Mapv3dLayer.vue +2 -0
- package/src/components/Overlay/ParticleEffects.vue +545 -0
- package/src/components/Overlay/mapv/MapvBaseLayer.js +351 -172
- package/src/components/Overlay/mapv/MapvLayer.js +372 -324
- package/src/components/Overlay/mapv/SuperCluster.js +611 -0
- package/src/components/Overlay/themeLayer/heater/CesiumHeater.vue +152 -0
- package/src/components/Overlay/themeLayer/heater/MapvHeater.vue +161 -0
- package/src/components/UI/Controls/Draw/Draw.vue +320 -92
- package/src/components/UI/Controls/Legend/Legend.vue +55 -51
- package/src/components/UI/Controls/Link/Link.vue +59 -37
- package/src/components/UI/Controls/Measure/Measure.vue +75 -33
- package/src/components/UI/Controls/Measure/components/MeasureResult.vue +71 -0
- package/src/components/UI/Controls/Measure/components/MeasureSetting.vue +63 -0
- package/src/components/UI/Controls/Measure/components/MeasureTool.vue +155 -0
- package/src/components/UI/Geojson/Popup.vue +101 -0
- package/src/components/UI/Marker/Marker.vue +185 -48
- package/src/components/UI/Popup/Popup.vue +21 -64
- package/src/components/Utils/common/color-util.js +159 -0
- package/src/components/Utils/util.js +311 -231
- package/src/components/WebGlobe/manager.js +81 -3
- package/src/components/WebGlobe/mixins/withPrivateMethods.js +4 -2
- package/src/components/WebGlobe/util.js +173 -0
- package/src/components/service/comprehensive-query/ComprehensiveQuery.vue +156 -0
- package/src/components/service/comprehensive-query/PlaceNameCesium.vue +102 -0
- package/src/components/service/comprehensive-query/util/catalog/document.js +626 -0
- package/src/components/service/comprehensive-query/util/feature/arcgis-feature-query.js +448 -0
- package/src/components/service/comprehensive-query/util/feature/feature-convert.js +408 -0
- package/src/components/service/comprehensive-query/util/feature/feature-edit.js +50 -0
- package/src/components/service/comprehensive-query/util/feature/feature-geojson.js +100 -0
- package/src/components/service/comprehensive-query/util/feature/feature-query.js +723 -0
- package/src/components/service/comprehensive-query/util/feature/feature.js +1 -0
- package/src/components/service/comprehensive-query/util/feature/index.js +9 -0
- package/src/components/service/comprehensive-query/util/objects/geometry.js +58 -0
- package/src/components/Overlay/Mapv.vue +0 -142
- package/src/components/Overlay/MapvHeater.vue +0 -98
|
@@ -1,74 +1,72 @@
|
|
|
1
1
|
# Popups
|
|
2
2
|
|
|
3
|
-
::: warning
|
|
4
|
-
~ 快速提示,Cesium本身是不支持Popup机制的,该机制由MapGIS内部实现。
|
|
3
|
+
::: warning
|
|
4
|
+
~ 快速提示,Cesium 本身是不支持 Popup 机制的,该机制由 MapGIS 内部实现。
|
|
5
5
|
:::
|
|
6
6
|
|
|
7
7
|
## Popup
|
|
8
8
|
|
|
9
|
-
Popup组件你可以直接HTML设置popup的内部的样式.
|
|
9
|
+
Popup 组件你可以直接 HTML 设置 popup 的内部的样式.
|
|
10
10
|
|
|
11
11
|
```vue
|
|
12
12
|
<template>
|
|
13
13
|
<cesium-web-globe
|
|
14
14
|
libPath="statics/cesium/Cesium.js"
|
|
15
|
-
pluginPath="statics/cesium/webclient-cesium-
|
|
15
|
+
pluginPath="statics/cesium/webclient-cesium-plugin.min.js"
|
|
16
16
|
>
|
|
17
|
-
<cesium-popup
|
|
18
|
-
:position="{longitude:110, latitude: 30}"
|
|
19
|
-
|
|
17
|
+
<cesium-popup
|
|
18
|
+
:position="{ longitude: 110, latitude: 30 }"
|
|
19
|
+
container="<div>123</div>"
|
|
20
20
|
>
|
|
21
21
|
</cesium-popup>
|
|
22
22
|
</cesium-web-globe>
|
|
23
23
|
</template>
|
|
24
24
|
|
|
25
25
|
<script>
|
|
26
|
-
import {
|
|
27
|
-
CesiumWebGlobe,
|
|
28
|
-
CesiumPopup,
|
|
29
|
-
} from '@mapgis/webclient-vue-cesium';
|
|
26
|
+
import { CesiumWebGlobe, CesiumPopup } from "@mapgis/webclient-vue-cesium";
|
|
30
27
|
|
|
31
28
|
export default {
|
|
32
29
|
components: {
|
|
33
30
|
CesiumWebGlobe,
|
|
34
31
|
CesiumPopup,
|
|
35
|
-
}
|
|
32
|
+
},
|
|
36
33
|
};
|
|
37
34
|
</script>
|
|
38
35
|
```
|
|
39
36
|
|
|
40
|
-
如果你设置 `onlyText` 属性为 `true`, 内容被统一当做文本处理. 一般用于从一个不信任的数据源获取对应的显示html内容,防止注入。
|
|
37
|
+
如果你设置 `onlyText` 属性为 `true`, 内容被统一当做文本处理. 一般用于从一个不信任的数据源获取对应的显示 html 内容,防止注入。
|
|
41
38
|
|
|
42
|
-
通常Popup被添加到地图上是默认隐藏的,如果你想加载的时候立即展示,你需要设置`showed` 属性为 `true`。
|
|
39
|
+
通常 Popup 被添加到地图上是默认隐藏的,如果你想加载的时候立即展示,你需要设置`showed` 属性为 `true`。
|
|
43
40
|
|
|
44
41
|
### 属性
|
|
45
42
|
|
|
46
43
|
- `position {Object}` 提供三种不同的方式实现对应的位置的传参方式
|
|
47
|
-
- `entity`, 传入任意一个Cesiumd的Entity实体,然后根据该实体的中心点position显示对应的popup
|
|
48
|
-
- `cartesian`, 传入一个cartesian3的坐标点{x,y,z},然后将popup显示在此处
|
|
49
|
-
- `longitude`/`latitude`/`height`,传入经纬度以及高度,内部转换成cartesian3的坐标点{x,y,z},然后将popup显示在此处
|
|
50
|
-
- `options {Boolean}`
|
|
51
|
-
|
|
52
|
-
- `
|
|
44
|
+
- `entity`, 传入任意一个 Cesiumd 的 Entity 实体,然后根据该实体的中心点 position 显示对应的 popup
|
|
45
|
+
- `cartesian`, 传入一个 cartesian3 的坐标点{x,y,z},然后将 popup 显示在此处
|
|
46
|
+
- `longitude`/`latitude`/`height`,传入经纬度以及高度,内部转换成 cartesian3 的坐标点{x,y,z},然后将 popup 显示在此处
|
|
47
|
+
- `options {Boolean}`
|
|
48
|
+
|
|
49
|
+
- `popupId` 外部传入 id,用来指定特殊的 id,用于外部获取该 DOM 事件/样式个性化定制
|
|
50
|
+
- `popupContentId` 外部传入 id,用来指定特殊的 id,用于外部获取该 DOM 事件/样式个性化定制
|
|
53
51
|
- `postRender` 关闭此参数会提升性能,但是会减少视觉效果
|
|
54
|
-
- `showClose` 一旦上面采取非entiy的方式创建Popup,一旦关闭后无法通过交互激活Popup,只能通过对应的代码对象的`popup.show()`方法重新激活。
|
|
52
|
+
- `showClose` 一旦上面采取非 entiy 的方式创建 Popup,一旦关闭后无法通过交互激活 Popup,只能通过对应的代码对象的`popup.show()`方法重新激活。
|
|
55
53
|
|
|
56
|
-
- `container {String}` 外部传递htmlString给popup的内部content的DIV内容进行填充,一般这个都在配合echarts时同步使用,主要是让外部的echart或者其他需要主动操作dom的元素进行初始化操作。
|
|
54
|
+
- `container {String}` 外部传递 htmlString 给 popup 的内部 content 的 DIV 内容进行填充,一般这个都在配合 echarts 时同步使用,主要是让外部的 echart 或者其他需要主动操作 dom 的元素进行初始化操作。
|
|
57
55
|
|
|
58
56
|
完整的参数列表请看 [API](/api/popup.md#props)
|
|
59
57
|
|
|
60
|
-
### 绑定实体Entity
|
|
58
|
+
### 绑定实体 Entity
|
|
61
59
|
|
|
62
60
|
```vue
|
|
63
61
|
<template>
|
|
64
62
|
<cesium-web-globe
|
|
65
63
|
libPath="statics/cesium/Cesium.js"
|
|
66
|
-
pluginPath="statics/cesium/webclient-cesium-
|
|
64
|
+
pluginPath="statics/cesium/webclient-cesium-plugin.min.js"
|
|
67
65
|
@load="handleLoad"
|
|
68
66
|
>
|
|
69
67
|
<cesium-popup
|
|
70
68
|
v-if="entity"
|
|
71
|
-
:position="{entity:entity}"
|
|
69
|
+
:position="{ entity: entity }"
|
|
72
70
|
container="<div>123</div>"
|
|
73
71
|
>
|
|
74
72
|
</cesium-popup>
|
|
@@ -76,10 +74,7 @@ export default {
|
|
|
76
74
|
</template>
|
|
77
75
|
|
|
78
76
|
<script>
|
|
79
|
-
import {
|
|
80
|
-
CesiumWebGlobe,
|
|
81
|
-
CesiumPopup,
|
|
82
|
-
} from '@mapgis/webclient-vue-cesium';
|
|
77
|
+
import { CesiumWebGlobe, CesiumPopup } from "@mapgis/webclient-vue-cesium";
|
|
83
78
|
|
|
84
79
|
export default {
|
|
85
80
|
components: {
|
|
@@ -89,7 +84,7 @@ export default {
|
|
|
89
84
|
data() {
|
|
90
85
|
return {
|
|
91
86
|
entity: undefined,
|
|
92
|
-
}
|
|
87
|
+
};
|
|
93
88
|
},
|
|
94
89
|
methods: {
|
|
95
90
|
handleLoad(payload) {
|
|
@@ -101,30 +96,31 @@ export default {
|
|
|
101
96
|
addEntity() {
|
|
102
97
|
const { Cesium, webGlobe } = this;
|
|
103
98
|
var entity = webGlobe.viewer.entities.add({
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
99
|
+
position: Cesium.Cartesian3.fromDegrees(103.0, 40.0),
|
|
100
|
+
name: "Red ellipse on surface",
|
|
101
|
+
ellipse: {
|
|
102
|
+
semiMinorAxis: 250000.0,
|
|
103
|
+
semiMajorAxis: 400000.0,
|
|
104
|
+
material: Cesium.Color.RED.withAlpha(0.5),
|
|
105
|
+
},
|
|
106
|
+
});
|
|
112
107
|
this.entity = entity;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
108
|
+
},
|
|
109
|
+
},
|
|
115
110
|
};
|
|
116
111
|
</script>
|
|
117
112
|
```
|
|
118
113
|
|
|
119
|
-
### 绑定笛卡尔坐标Cartesian
|
|
114
|
+
### 绑定笛卡尔坐标 Cartesian
|
|
115
|
+
|
|
120
116
|
```vue
|
|
121
117
|
<template>
|
|
122
118
|
<cesium-web-globe
|
|
123
119
|
libPath="statics/cesium/Cesium.js"
|
|
124
|
-
pluginPath="statics/cesium/webclient-cesium-
|
|
120
|
+
pluginPath="statics/cesium/webclient-cesium-plugin.min.js"
|
|
125
121
|
>
|
|
126
|
-
<cesium-popup
|
|
127
|
-
:position="{cartesian: cartesian}"
|
|
122
|
+
<cesium-popup
|
|
123
|
+
:position="{ cartesian: cartesian }"
|
|
128
124
|
container="<div>123</div>"
|
|
129
125
|
>
|
|
130
126
|
</cesium-popup>
|
|
@@ -152,14 +148,15 @@ export default {
|
|
|
152
148
|
```
|
|
153
149
|
|
|
154
150
|
### 绑定经纬度
|
|
151
|
+
|
|
155
152
|
```vue
|
|
156
153
|
<template>
|
|
157
154
|
<cesium-web-globe
|
|
158
155
|
libPath="statics/cesium/Cesium.js"
|
|
159
|
-
pluginPath="statics/cesium/webclient-cesium-
|
|
156
|
+
pluginPath="statics/cesium/webclient-cesium-plugin.min.js"
|
|
160
157
|
>
|
|
161
|
-
<cesium-popup
|
|
162
|
-
:position="{longitude:110, latitude: 30}"
|
|
158
|
+
<cesium-popup
|
|
159
|
+
:position="{ longitude: 110, latitude: 30 }"
|
|
163
160
|
container="<div>123</div>"
|
|
164
161
|
>
|
|
165
162
|
</cesium-popup>
|
|
@@ -167,17 +164,13 @@ export default {
|
|
|
167
164
|
</template>
|
|
168
165
|
|
|
169
166
|
<script>
|
|
170
|
-
import {
|
|
171
|
-
CesiumWebGlobe,
|
|
172
|
-
CesiumPopup,
|
|
173
|
-
} from '@mapgis/webclient-vue-cesium';
|
|
167
|
+
import { CesiumWebGlobe, CesiumPopup } from "@mapgis/webclient-vue-cesium";
|
|
174
168
|
|
|
175
169
|
export default {
|
|
176
170
|
components: {
|
|
177
171
|
CesiumWebGlobe,
|
|
178
172
|
CesiumPopup,
|
|
179
|
-
}
|
|
173
|
+
},
|
|
180
174
|
};
|
|
181
175
|
</script>
|
|
182
176
|
```
|
|
183
|
-
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
# 创建StoryBook示例
|
|
2
|
+
|
|
3
|
+
## 一、注册组件到StoryBook
|
|
4
|
+
这里以一个WMTS组件为例,创建了一个新组件
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+
<br>
|
|
8
|
+
将组建注册到StoryBook的配置文件中,配置文件路径如下:webclient-vue/.storybook/components/cesium_coms.js
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
## 二、创建一个StoryBook的3D组件示例
|
|
13
|
+
|
|
14
|
+
找到如下文件夹:webclient-vue/stories/mapgis3d,新建一个storybook的3D示例CesiumExample.stories.js
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
## 三、stories的结构解析
|
|
19
|
+
|
|
20
|
+
一个storybook示例包含如下三部分:标题、示例代码、接口展示
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
<br>
|
|
24
|
+
标题结构如下:
|
|
25
|
+
```vue
|
|
26
|
+
export default {
|
|
27
|
+
title: "三维/图层/OGC/示例",
|
|
28
|
+
argTypes: {
|
|
29
|
+
baseUrl: {
|
|
30
|
+
description:'地图请求的基地址路径',
|
|
31
|
+
table:{
|
|
32
|
+
type:{ summary: 'tips',detail: "这是提示信息" },
|
|
33
|
+
defaultValue: { summary: 'null' },
|
|
34
|
+
},
|
|
35
|
+
control:'text'
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
title里面每一个斜杠'/',代表一个文件夹,最后一个斜杠'/'后面的文字就是最终的标题,这里的标题就是“示例”
|
|
42
|
+
<br>
|
|
43
|
+
|
|
44
|
+
示例代码结构如下:
|
|
45
|
+
|
|
46
|
+
```vue
|
|
47
|
+
const Template = (args, { argTypes }) => ({
|
|
48
|
+
props: Object.keys(argTypes),
|
|
49
|
+
template: `<mapgis-web-scene>
|
|
50
|
+
<mapgis-3d-ogc-example-wmts-layer v-bind="$props"/>
|
|
51
|
+
</mapgis-web-scene>`,
|
|
52
|
+
data(){
|
|
53
|
+
return {}
|
|
54
|
+
},
|
|
55
|
+
methods:{
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
argTypes代表对外展示的接口,所有的argTypes里面的值,都会展示到示例页面里
|
|
61
|
+
|
|
62
|
+
props、template、data。methods就是标准的vue模板语法,可完全按照vue来编写
|
|
63
|
+
<br>
|
|
64
|
+
|
|
65
|
+
接口展示结构如下:
|
|
66
|
+
|
|
67
|
+
```vue
|
|
68
|
+
export const ExampleLayer = Template.bind({});
|
|
69
|
+
ExampleLayer.args = {
|
|
70
|
+
baseUrl:"http://develop.smaryun.com:6163/igs/rest/ogc/beijing/WMTSServer",
|
|
71
|
+
wmtsLayer: "beijing",
|
|
72
|
+
tileMatrixSet : "EPSG:4326_北京市_028mm_GB",
|
|
73
|
+
tilingScheme : "EPSG:4326",
|
|
74
|
+
layerStyle: {
|
|
75
|
+
visible: true,
|
|
76
|
+
opacity: 1,
|
|
77
|
+
zIndex: 10
|
|
78
|
+
},
|
|
79
|
+
vueIndex: 1,
|
|
80
|
+
options: {}
|
|
81
|
+
};
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
请注意这句话export const ExampleLayer = Template.bind({});
|
|
85
|
+
<br>
|
|
86
|
+
|
|
87
|
+
"ExampleLayer"这个名称就是次级标题的名称
|
|
88
|
+
|
|
89
|
+

|
|
90
|
+
<br>
|
|
91
|
+
|
|
92
|
+
ExampleLayer.args里面的值将会展示在示例页面的form表单中
|
|
93
|
+
|
|
94
|
+

|
|
95
|
+
<br>
|
|
96
|
+
|
|
97
|
+
在展示示例的接口展示表单中修改接口的值,可以实时更新示例,但请注意,更新走的是初始化的方法,不会触发watch函数!!!!
|
|
98
|
+
|
|
99
|
+

|
|
100
|
+
<br>
|
|
101
|
+
|
|
102
|
+
编写接口描述信息,这里以baseUrl字段为例,展示如何编写Description以及Default的值
|
|
103
|
+
|
|
104
|
+
在export default中的argTypes添加一个baseUrl字段,如下所示
|
|
105
|
+
|
|
106
|
+
```vue
|
|
107
|
+
export default {
|
|
108
|
+
title: "三维/图层/OGC/示例",
|
|
109
|
+
argTypes: {
|
|
110
|
+
//要描述的字段
|
|
111
|
+
baseUrl: {
|
|
112
|
+
//描述信息,即页面上Description那一栏的值
|
|
113
|
+
description:'地图请求的基地址路径',
|
|
114
|
+
table:{
|
|
115
|
+
//description描述信息下的提示框,可选,添加这一项就会在描述信息文字下生成一个提示信息按钮
|
|
116
|
+
//summary:提示按钮里的文字,detail:提示信息
|
|
117
|
+
type:{ summary: 'tips',detail: "这里是提示" },
|
|
118
|
+
//默认值,即页面上Default那一栏的值,不在这里填写,则页面上不会有默认值
|
|
119
|
+
//如果加了detail,{ summary: 'null',detail: "这里是提示" },则页面会多出一个描述信息的提示框
|
|
120
|
+
defaultValue: { summary: 'null' },
|
|
121
|
+
},
|
|
122
|
+
//Control这里一栏里面展示数据的方式,可以是input、textArean、boolean等,可选值如下
|
|
123
|
+
control:'text'
|
|
124
|
+
},
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+

|
|
130
|
+
<br>
|
|
131
|
+
|
|
132
|
+
control的可选值:
|
|
133
|
+
<br>
|
|
134
|
+
|
|
135
|
+

|
|
136
|
+
|
|
137
|
+

|
|
138
|
+
|
|
139
|
+
## 四、一个stories示例里面展示多个示例
|
|
140
|
+
|
|
141
|
+
```vue
|
|
142
|
+
//展示第一个图层
|
|
143
|
+
export const ExampleLayer = Template.bind({});
|
|
144
|
+
ExampleLayer.args = {
|
|
145
|
+
baseUrl:"http://develop.smaryun.com:6163/igs/rest/ogc/beijing/WMTSServer",
|
|
146
|
+
wmtsLayer: "beijing",
|
|
147
|
+
tileMatrixSet : "EPSG:4326_北京市_028mm_GB",
|
|
148
|
+
tilingScheme : "EPSG:4326",
|
|
149
|
+
layerStyle: {
|
|
150
|
+
visible: true,
|
|
151
|
+
opacity: 1,
|
|
152
|
+
zIndex: 10
|
|
153
|
+
},
|
|
154
|
+
vueIndex: 1,
|
|
155
|
+
options: {}
|
|
156
|
+
};
|
|
157
|
+
//展示第二个图层,此处不会在展示接口面板
|
|
158
|
+
export const ExampleLayerTwo = Template.bind({});
|
|
159
|
+
ExampleLayerTwo.args = {
|
|
160
|
+
baseUrl:"http://develop.smaryun.com:6163/igs/rest/ogc/beijing/WMTSServer",
|
|
161
|
+
wmtsLayer: "beijing",
|
|
162
|
+
tileMatrixSet : "EPSG:4326_北京市_028mm_GB",
|
|
163
|
+
tilingScheme : "EPSG:4326",
|
|
164
|
+
layerStyle: {
|
|
165
|
+
visible: true,
|
|
166
|
+
opacity: 1,
|
|
167
|
+
zIndex: 10
|
|
168
|
+
},
|
|
169
|
+
vueIndex: 1,
|
|
170
|
+
options: {}
|
|
171
|
+
};
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## 五、完整storybook示例
|
|
175
|
+
|
|
176
|
+
```vue
|
|
177
|
+
export default {
|
|
178
|
+
title: "三维/图层/OGC/示例",
|
|
179
|
+
argTypes: {
|
|
180
|
+
//要描述的字段
|
|
181
|
+
baseUrl: {
|
|
182
|
+
//描述信息,即页面上Description那一栏的值
|
|
183
|
+
description:'地图请求的基地址路径',
|
|
184
|
+
table:{
|
|
185
|
+
//description描述信息下的提示框,可选,添加这一项就会在描述信息文字下生成一个提示信息按钮
|
|
186
|
+
//summary:提示按钮里的文字,detail:提示信息
|
|
187
|
+
type:{ summary: 'tips',detail: "这里是提示" },
|
|
188
|
+
//默认值,即页面上Default那一栏的值,不在这里填写,则页面上不会有默认值
|
|
189
|
+
//如果加了detail,{ summary: 'null',detail: "这里是提示" },则页面会多出一个描述信息的提示框
|
|
190
|
+
defaultValue: { summary: 'null' },
|
|
191
|
+
},
|
|
192
|
+
//Control这里一栏里面展示数据的方式,可以是input、textArean、boolean等,可选值如下
|
|
193
|
+
control:'text'
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
//按照vue语法写即可
|
|
199
|
+
const Template = (args, { argTypes }) => ({
|
|
200
|
+
props: Object.keys(argTypes),
|
|
201
|
+
template: `<mapgis-web-scene>
|
|
202
|
+
<mapgis-3d-ogc-example-wmts-layer v-bind="$props"/>
|
|
203
|
+
</mapgis-web-scene>`,
|
|
204
|
+
data(){
|
|
205
|
+
return {}
|
|
206
|
+
},
|
|
207
|
+
methods:{}
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
//展示第一个图层
|
|
211
|
+
export const ExampleLayer = Template.bind({});
|
|
212
|
+
ExampleLayer.args = {
|
|
213
|
+
baseUrl:"http://develop.smaryun.com:6163/igs/rest/ogc/beijing/WMTSServer",
|
|
214
|
+
wmtsLayer: "beijing",
|
|
215
|
+
tileMatrixSet : "EPSG:4326_北京市_028mm_GB",
|
|
216
|
+
tilingScheme : "EPSG:4326",
|
|
217
|
+
layerStyle: {
|
|
218
|
+
visible: true,
|
|
219
|
+
opacity: 1,
|
|
220
|
+
zIndex: 10
|
|
221
|
+
},
|
|
222
|
+
vueIndex: 1,
|
|
223
|
+
options: {}
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
//展示第二个图层,此处不会在展示接口面板
|
|
227
|
+
export const ExampleLayerTwo = Template.bind({});
|
|
228
|
+
ExampleLayerTwo.args = {
|
|
229
|
+
baseUrl:"http://develop.smaryun.com:6163/igs/rest/ogc/beijing/WMTSServer",
|
|
230
|
+
wmtsLayer: "beijing",
|
|
231
|
+
tileMatrixSet : "EPSG:4326_北京市_028mm_GB",
|
|
232
|
+
tilingScheme : "EPSG:4326",
|
|
233
|
+
layerStyle: {
|
|
234
|
+
visible: true,
|
|
235
|
+
opacity: 1,
|
|
236
|
+
zIndex: 10
|
|
237
|
+
},
|
|
238
|
+
vueIndex: 1,
|
|
239
|
+
options: {}
|
|
240
|
+
};
|
|
241
|
+
```
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/docs/version/diff.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
# 对比分析
|
|
2
|
-
## 1.07 vs 4.25
|
|
1
|
+
# 对比分析
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
## 1.x.x vs 10.x.x
|
|
4
|
+
|
|
5
|
+
| 文件 | 类型 | 10.5.2 (2021-04) | 1.0.13 (2020-12) | 10.5.2(按需引入) | 1.0.13(按需引入) | 备注 |
|
|
5
6
|
| :--------------------------------------- | :--- | :--------------------------- | :------------------------ | :---------------------- | :---------------------- | :--- |
|
|
6
7
|
| WebGlobe\WebGlobe.vue | 改名 | mapgis-web-scene | cesium-web-globe | MapgisWebScene | | 无 |
|
|
7
8
|
| DataSource\Czml\CzmlDataSource.vue | 改名 | mapgis-3d-czml-datasource | cesium-czml-datasource | MapgisCzmlDatasource | CesiumCzmlDatasource | 无 |
|
|
@@ -19,4 +20,3 @@
|
|
|
19
20
|
| UI\Controls\Link\Link.vue | 改名 | mapgis-3d-link | | Mapgis3dLink | | 无 |
|
|
20
21
|
| UI\Controls\State\StateControl.vue | 新增 | mapgis-3d-statebar | | Mapgis3dState | | 无 |
|
|
21
22
|
| UI\Popup\Popup.vue | 改名 | mapgis-3d-popup | | Mapgis3dPopup | | 无 |
|
|
22
|
-
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# 更新说明
|
|
2
|
+
|
|
3
|
+
## 10.5.5.12
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
# 公网
|
|
7
|
+
yarn add @mapgis/webclient-es6-service@10.5.5-1
|
|
8
|
+
yarn add @mapgis/webclient-vue-cesium@10.5.5-3
|
|
9
|
+
yarn add @mapgis/webclient-vue-mapboxgl@10.5.5-5
|
|
10
|
+
yarn add @mapgis/webclient-vue-ui@10.5.5-3
|
|
11
|
+
|
|
12
|
+
# 内网 中地源 内网版本号要超前一些
|
|
13
|
+
yarn config set registry http://192.168.82.89:4873/
|
|
14
|
+
yarn add @mapgis/webclient-es6-service@10.5.5-3
|
|
15
|
+
yarn add @mapgis/webclient-vue-cesium@10.5.5-3
|
|
16
|
+
yarn add @mapgis/webclient-vue-mapboxgl@10.5.5-8
|
|
17
|
+
yarn add @mapgis/webclient-vue-ui@10.5.5-4
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### 问题修复列表
|
|
21
|
+
|
|
22
|
+
| 分类 | 文件 | bug 号 | 问题描述 |
|
|
23
|
+
| -------- | ---------------------- | ------ | ------------------------------------------------------- |
|
|
24
|
+
| 功能改进 | webclient-vue-mapboxgl | 无 | |
|
|
25
|
+
| 功能改进 | webclient-vue-cesium | 无 | M3D 缺乏子图层控制能力 |
|
|
26
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图粒子特效下沉到 mapgis-vue-cesium 中 |
|
|
27
|
+
| 新增功能 | webclient-vue-cesium | 无 | 新增动态标绘图层 |
|
|
28
|
+
| 新增功能 | webclient-vue-mapboxgl | 无 | 新增动态标绘图层 |
|
|
29
|
+
| 新增功能 | webclient-vue-ui | 无 | 新增综合查询面板 |
|
|
30
|
+
| 功能改进 | webclient-vue-cesium | 无 | mapgis-3d-Marker 需要鼠标移入移出事件 |
|
|
31
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图三维热力图组件下沉到 mapgis-vue-cesium 中 |
|
|
32
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图三维量算组件下沉到 mapgis-vue-cesium 中 |
|
|
33
|
+
| 性能优化 | webclient-vue-mapboxgl | 无 | 一张图二维量算组件下沉到 mapgis-vue-mapboxgl 中 |
|
|
34
|
+
| 新增功能 | webclient-vue-cesium | 无 | cesium 组件 mapgis-3d-draw 提供样式修改和贴地贴模型功能 |
|
|
35
|
+
| 新增功能 | webclient-vue-cesium | 无 | 三维 cesium 缺少 Igserver 要素图层组件 |
|
|
36
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图可视域分析下沉到 mapgis-vue-cesium 中 |
|
|
37
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图通视分析下沉到 mapgis-vue-cesium 中 |
|
|
38
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图阴影分析下沉到 mapgis-vue-cesium 中 |
|
|
39
|
+
| 性能优化 | webclient-vue-cesium | 无 | 一张图天际线分析下沉到 mapgis-vue-cesium 中 |
|
|
40
|
+
| 性能优化 | webclient-vue-mapboxgl | 无 | mapgis-3d-vectortile-layer 没有排序能力 |
|
|
41
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图剖面分析下沉到 mapgis-vue-cesium 中 |
|
|
42
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图填挖方分析下沉到 mapgis-vue-cesium 中 |
|
|
43
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图洪水淹没分析下沉到 mapgis-vue-cesium 中 |
|
|
44
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图等值线分析下沉到 mapgis-vue-cesium 中 |
|
|
45
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图坡向分析下沉到 mapgis-vue-cesium 中 |
|
|
46
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图坡度分析下沉到 mapgis-vue-cesium 中 |
|
|
47
|
+
| 新增功能 | webclient-vue-cesium | 无 | 一张图剖切分析下沉到 mapgis-vue-cesium 中 |
|
|
48
|
+
| 性能优化 | webclient-vue-mapboxgl | 无 | geojson 的没有自定义 popup tip 的能力 |
|
|
49
|
+
| 新增功能 | webclient-vue-mapboxgl | 无 | 没有默认的放大缩小的组件 |
|
|
50
|
+
| 新增功能 | webclient-vue-mapboxgl | 无 | 没有默认的缩放值范围的组件 |
|
|
51
|
+
| 新增功能 | webclient-vue-ui | 无 | 一张图抽象 UI 下沉到 mapgis-vue-ui 中 |
|
|
52
|
+
| 新增功能 | Cesium.js | 无 | 缺少矢量地图文档加载接口 |
|
|
53
|
+
|
|
54
|
+
### 接口更新列表
|
|
55
|
+
|
|
56
|
+
| 分类 | 文件 | 接口名 | 接口类型 | 更新说明 |
|
|
57
|
+
| ---- | ------------------------- | ----------------------------------------------- | -------- | ------------------------------------------------------- |
|
|
58
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-state | 类 | 新增状态栏组件 |
|
|
59
|
+
| 新增 | webclient-vue-cesium.js | mapgis-3d-igs-m3d | 属性 | 新增动态子图层可见性控制参数 layers |
|
|
60
|
+
| 新增 | webclient-vue-cesium.js | mapgis-3d-dynamic-marker-layer | 类 | 新增动态标绘图层组件 |
|
|
61
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-dynamic-marker-layer | 类 | 新增动态标绘图层组件 |
|
|
62
|
+
| 新增 | webclient-vue-cesium.js | mouseEnter | 枚举 | 新增鼠标移入事件 |
|
|
63
|
+
| 新增 | webclient-vue-cesium.js | mouseLeave | 枚举 | 新增鼠标移出事件 |
|
|
64
|
+
| 新增 | webclient-vue-cesium.js | IgsFeatureLayer. | 类 | 新增 igs 要素查询组件 |
|
|
65
|
+
| 新增 | webclient-vue-cesium.js | mapgis-3d-vectortile-layer.layerStyle | 属性 | 新增矢量瓦片图层的图层排序能力 |
|
|
66
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-geojson-layer.customPopup | 属性 | 新增 geojsonlayer 的自定义 Popup(JSX)能力 |
|
|
67
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-geojson-layer.customTips | 属性 | 新增 geojsonlayer 的自定义 Tips(JSX)能力 |
|
|
68
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-zoom | 类 | 新增二维的放大缩小组件 mapgis-zoom |
|
|
69
|
+
| 新增 | webclient-vue-mapboxgl.js | mapgis-fitbounds | 类 | 新增二维的缩放至范围组件 mapgis-fitbounds |
|
|
70
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-icon | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-icon |
|
|
71
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-tooltip-button | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-tooltip-button |
|
|
72
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-command-card | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-command-card |
|
|
73
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-editable-table | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-editable-table |
|
|
74
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-row-flex | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-row-flex |
|
|
75
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-toolbar | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-toolbar |
|
|
76
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-toolbar-space | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-toolbar-space |
|
|
77
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-toolbar-title | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-toolbar-title |
|
|
78
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-toolbar-command | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-toolbar-command |
|
|
79
|
+
| 新增 | webclient-vue-ui.js | mapgis-ui-toolbar-command-group | 类 | 新增 mapgis-vue-ui 组件 mapgis-ui-toolbar-command-group |
|
|
80
|
+
| 新增 | Cesium.js | Cesium.WebSceneControl.appendMapGISVectorDocMap | 方法 | 加载 MapGIS 矢量地图文档 |
|
|
81
|
+
| 新增 | Cesium.js | Cesium.WebSceneControl.removeMapGISVectorDocMap | 方法 | 移除 MapGIS 矢量地图文档 |
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapgis/webclient-vue-cesium",
|
|
3
|
-
"version": "10.5.5-
|
|
3
|
+
"version": "10.5.5-6",
|
|
4
4
|
"description": "mapgis webclient-vue-cesium",
|
|
5
5
|
"main": "dist-libs/webclient-vue-cesium.umd.min.js",
|
|
6
|
+
"module1": "src/main.js",
|
|
6
7
|
"scripts": {
|
|
7
8
|
"build": "node --max_old_space_size=8196 ./node_modules/@vue/cli-service/bin/vue-cli-service build --target lib --name webclient-vue-cesium src/main.js",
|
|
8
9
|
"serve": "vue-cli-service build --target lib --name webclient-vue-cesium src/main.js --watch",
|
|
@@ -23,8 +24,9 @@
|
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
26
|
"@mapgis/cesium": "1.59.4",
|
|
26
|
-
"@mapgis/webclient-es6-service": "
|
|
27
|
-
"@mapgis/webclient-store": "^
|
|
27
|
+
"@mapgis/webclient-es6-service": "10.5.5-2",
|
|
28
|
+
"@mapgis/webclient-store": "^10.5.5",
|
|
29
|
+
"@mapgis/webclient-vue-ui": "10.5.5-4",
|
|
28
30
|
"@turf/turf": "^5.1.6",
|
|
29
31
|
"@vuepress/plugin-active-header-links": "^1.7.1",
|
|
30
32
|
"@vuepress/plugin-nprogress": "^1.7.1",
|
|
@@ -32,8 +34,6 @@
|
|
|
32
34
|
"echarts": "^5.0.2",
|
|
33
35
|
"mapv": "^2.0.62",
|
|
34
36
|
"moment": "^2.29.1",
|
|
35
|
-
"node-sass": "^4.14.0",
|
|
36
|
-
"sass-loader": "^8.0.2",
|
|
37
37
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
38
38
|
"vcolorpicker": "^1.1.0",
|
|
39
39
|
"vuepress": "^1.8.2"
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export { default as MapgisWebScene } from "../components/WebGlobe/WebGlobe.vue";
|
|
2
|
+
|
|
3
|
+
// 工具
|
|
4
|
+
export { default as Mapgis3dStatebar } from "../components/UI/Controls/State/StateControl.vue";
|
|
5
|
+
export { default as Mapgis3dLink } from "../components/UI/Controls/Link/Link.vue";
|
|
6
|
+
export { default as Mapgis3dDraw } from "../components/UI/Controls/Draw/Draw";
|
|
7
|
+
export { default as Mapgis3dMeasure } from "../components/UI/Controls/Measure/Measure";
|
|
8
|
+
// export { default as Mapgis3dTable } from "../components/UI/Controls/Table/BaseTable";
|
|
9
|
+
export { default as Mapgis3dCompare } from "../components/UI/Controls/Compare/cdn/Compare.vue";
|
|
10
|
+
export { default as Mapgis3dArcgisLegend } from "../components/UI/Controls/Legend/Legend.vue";
|
|
11
|
+
|
|
12
|
+
// 影像
|
|
13
|
+
export { default as Mapgis3dImageryLayer } from "../components/Provider/ImageProvider/ImageryLayer.vue";
|
|
14
|
+
export { default as Mapgis3dIgsDocLayer } from "../components/Layer/IGServer/IgsDocLayer.vue";
|
|
15
|
+
export { default as Mapgis3dIgsTileLayer } from "../components/Layer/IGServer/IgsTileLayer.vue";
|
|
16
|
+
export { default as Mapgis3dRasterLayer } from "../components/Layer/RasterTile/BaseRasterLayer.vue";
|
|
17
|
+
export { default as Mapgis3dRasterTileLayer } from "../components/Layer/RasterTile/RasterTileLayer.vue";
|
|
18
|
+
export { default as Mapgis3dOgcWmtsLayer } from "../components/Layer/OGC/OGCWMTSLayer.vue";
|
|
19
|
+
export { default as Mapgis3dOgcWmsLayer } from "../components/Layer/OGC/OGCWMSLayer.vue";
|
|
20
|
+
|
|
21
|
+
export { default as Mapgis3dIgsVectorLayer } from "../components/Layer/IGServer/IgsVectorLayer.vue";
|
|
22
|
+
|
|
23
|
+
export { default as Mapgis3dArcgisTileLayer } from "../components/Layer/ArcGISServer/ArcGISTileLayer";
|
|
24
|
+
export { default as Mapgis3dArcgisMapLayer } from "../components/Layer/ArcGISServer/ArcGISMapLayer";
|
|
25
|
+
|
|
26
|
+
// 矢量瓦片
|
|
27
|
+
export { default as Mapgis3dVectortileLayer } from "../components/Layer/VectorTile/VectorTileLayer.vue";
|
|
28
|
+
|
|
29
|
+
// 模型
|
|
30
|
+
export { default as Mapgis3dFileM3d } from "../components/M3D/M3dFile.vue";
|
|
31
|
+
export { default as Mapgis3dIgsM3d } from "../components/M3D/M3d.vue";
|
|
32
|
+
export { default as Mapgis3dTileset } from "../components/M3D/3dTileset.vue";
|
|
33
|
+
|
|
34
|
+
export { default as Mapgis3dPopup } from "../components/UI/Popup/Popup.vue";
|
|
35
|
+
/* export { default as Mapgis3dMapvLayer} from "../components/Overlay/Mapv3dLayer.vue";
|
|
36
|
+
export { default as Mapgis3dEchartsLayer} from "../components/Overlay/Echarts.vue"; */
|
|
37
|
+
|
|
38
|
+
export { default as Mapgis3dIgsTerrain } from "../components/Provider/TerrainProvider/IgsTerrainProvider.vue";
|
|
39
|
+
export { default as Mapgis3dTerrainProvider } from "../components/Provider/TerrainProvider/TerrainProvider.vue";
|
|
40
|
+
|
|
41
|
+
// 数据源
|
|
42
|
+
export { default as Mapgis3dGeojsonDatasource } from "../components/DataSource/Geojson/GeoJsonDataSource.vue";
|
|
43
|
+
export { default as Mapgis3dCzmlDatasource } from "../components/DataSource/Czml/CzmlDataSource";
|
|
44
|
+
|
|
45
|
+
//三维空间分析
|
|
46
|
+
export { default as Mapgis3dViewshed } from "../components/Analysis/Viewshed.vue";
|
|
47
|
+
export { default as Mapgis3dSightline } from "../components/Analysis/Sightline.vue";
|
|
48
|
+
export { default as Mapgis3dSkyline } from "../components/Analysis/SkyLine";
|
|
49
|
+
export { default as Mapgis3dModelFlatten } from "../components/Analysis/ModelFlatten";
|
|
50
|
+
export { default as Mapgis3dExcavate } from "../components/Analysis/Excavate";
|
|
51
|
+
export { default as Mapgis3dFlood } from "../components/Analysis/Flood";
|
|
52
|
+
export { default as Mapgis3dFloodNoSlot } from "../components/Analysis/FloodNoSlot";
|
|
53
|
+
export { default as colorPicker } from "vcolorpicker";
|
|
54
|
+
export { default as Mapgis3dDynamicCutting } from "../components/Analysis/DynamicCutting";
|
|
55
|
+
export { default as Mapgis3dCutFill } from "../components/Analysis/Fill";
|
|
56
|
+
export { default as Mapgis3dHeightlimited } from "../components/Analysis/HeightLimited";
|
|
57
|
+
export { default as Mapgis3dShadow } from "../components/Analysis/Shadow";
|
|
58
|
+
|
|
59
|
+
//场景效果组件
|
|
60
|
+
export { default as Mapgis3dRainEffect } from "../components/SceneEffect/RainEffect";
|
|
61
|
+
export { default as Mapgis3dSnowEffect } from "../components/SceneEffect/SnowEffect";
|
|
62
|
+
export { default as Mapgis3dFogEffect } from "../components/SceneEffect/FogEffect";
|