Skip to content

Commit 5af848a

Browse files
committed
同步dev分支
2 parents 1dd5b98 + cedfece commit 5af848a

File tree

244 files changed

+113127
-19715
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+113127
-19715
lines changed

build/webpack.mapboxgl.conf.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ const webpackConfig = merge(baseWebpackConfig, {
5151
commonjs2: 'vue-echarts',
5252
amd: 'vue-echarts'
5353
},
54+
'vue-cesium': {
55+
root: 'VueCesium',
56+
commonjs: 'vue-cesium',
57+
commonjs2: 'vue-cesium',
58+
amd: 'vue-cesium'
59+
},
5460
'ant-design-vue': {
5561
root: 'antd',
5662
commonjs: 'ant-design-vue',

docs/.vuepress/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ module.exports = {
116116
children: [
117117
'web-map/map',
118118
'web-scene/scene',
119+
'map-compare/compare',
119120
{
120121
title: '地图子组件',
121122
collapsable: false,

docs/zh/api/chart/echart.md

Lines changed: 15 additions & 24 deletions
Large diffs are not rendered by default.

docs/zh/api/chart/liquid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
1717
| :--------------- | :----------------------------------------------------------------------------- | :--------------- | :----- | :-------- |
1818
| url | 服务地址 | string | - | - |
19-
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index)中的字段 | string | - | - |
19+
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index.md)中的字段 | string | - | - |
2020
| startTiming | 是否开启定时刷新 | boolean | - | false |
2121
| frequency | 请求间隔 | number \| string | - | 3 |
2222
| value | 百分比 | number \| string | - | 0 |

docs/zh/api/chart/progress.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77

88
### Attributes
99

10-
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
11-
| :---------- | :----------------------------------------------------------------------------- | :--------------- | :----------------------------------------------- | :------- |
10+
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
11+
| :---------- | :------------------------------------------------------------------------------ | :--------------- | :----------------------------------------------- | :-------- |
1212
| - |
13-
| percent | 百分比 | number \| string | - | - |
14-
| url | 服务地址 | string | - | - |
15-
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index)中的字段 | string | - | - |
16-
| startTiming | 是否开启定时刷新 | boolean | - | false |
17-
| frequency | 请求间隔 | number \| string | - | 3 |
18-
| type | 类型 | string | 'line' \| 'circle' \| 'dashboard' | 'line' |
19-
| strokeWidth | 进度条线的宽度 ( type=line ) | number \| string | - | 6 |
20-
| strokeWidth | 进度条线的宽度 ( type=circle ) | number \| string | - | 6 |
21-
| status | 状态 | number \| string | 'normal' \| 'success' \| 'exception' \| 'active' | 'normal' |
22-
| strokeColor | 进度条颜色 | string | - | - |
13+
| percent | 百分比 | number \| string | - | - |
14+
| url | 服务地址 | string | - | - |
15+
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index.md)中的字段 | string | - | - |
16+
| startTiming | 是否开启定时刷新 | boolean | - | false |
17+
| frequency | 请求间隔 | number \| string | - | 3 |
18+
| type | 类型 | string | 'line' \| 'circle' \| 'dashboard' | 'line' |
19+
| strokeWidth | 进度条线的宽度 ( type=line ) | number \| string | - | 6 |
20+
| strokeWidth | 进度条线的宽度 ( type=circle ) | number \| string | - | 6 |
21+
| status | 状态 | number \| string | 'normal' \| 'success' \| 'exception' \| 'active' | 'normal' |
22+
| strokeColor | 进度条颜色 | string | - | - |
23+
| trailColor | 进度条底色 | string | - | '#f3f3f3' |

docs/zh/api/common-types/common-types.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,13 @@ let CircleStyle = new VueiClient.commontypes.CircleStyle();
7676
| maxFeatures | 要素最大返回数 | number | - | 20 |
7777
| name | 服务名称 | string | - | 'SuperMap iPortal 数据' |
7878
| withCredentials | 请求是否携带 cookie | boolean | - | false |
79+
80+
## GeoJSONParameter
81+
82+
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
83+
| :-------------- | :------------------ | :------------------------------ | :----- | :-------- |
84+
| type | 服务类型 | string | - | 'geoJSON' |
85+
| geoJSON | GeoJSON 数据 | [GeoJSON](https://geojson.org/) | - | - |
86+
| attributeFilter | 属性过滤条件 | string | - | - |
87+
| maxFeatures | 要素最大返回数 | number | - | 20 |
88+
| withCredentials | 请求是否携带 cookie | boolean | - | false |

docs/zh/api/common/indicator.md

Lines changed: 43 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,46 @@
77

88
### Attributes
99

10-
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
11-
| :------------------ | :----------------------------------------------------------------------------- | :--------------- | :-------------------------------- | :--------------------------------------- |
12-
| url | 服务地址 | string | - | - |
13-
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index)中的字段 | string | - | - |
14-
| startTiming | 是否开启定时刷新 | boolean | - | false |
15-
| frequency | 请求间隔 | number \| string | - | 3 |
16-
| showTitleUnit | 是否显示标题和单位 | boolean | - | true |
17-
| title | 标题 | string | - | '指标标题' |
18-
| unit | 单位 | string | - | '单位' |
19-
| num | 数据 | string \| number | - | 0 |
20-
| decimals | 小数位数 | number | - | -1 (计算结果的默认小数位数) |
21-
| mode | 排列方式 | string | 'vertical' \| 'horizontal' | 'vertical' |
22-
| separator | 千分符 | string | - | ','(英文逗号) |
23-
| separatorBackground | 分隔符背景 | boolean | - | false |
24-
| animated | 数字动画 | boolean | - | false |
25-
| duration | 动画时长 | string \| number | - | 1000 |
26-
| fontWeight | 字体粗细 | string \| number | 'lighter' \| 'normal' \| 'bolder' | 'border' |
27-
| fontSize | 字体大小 | string \| number | - | - |
28-
| numSpacing | 字体间距 | number | - | 0 |
29-
| indicatorColor | 数据颜色 | string | - | - |
30-
| numBackground | 背景样式 | object | - | { color: 'rgba(0, 0, 0, 0)', image: '' } |
31-
| |
10+
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
11+
| :------------------ | :------------------------------------------------------------------------------ | :---------------------------------------------- | :-------------------------------- | :--------------------------------------- |
12+
| url | 服务地址 | string | - | - |
13+
| field | 指定[服务响应数据](/zh/api/service-response-data-requirements/index.md)中的字段 | string | - | - |
14+
| startTiming | 是否开启定时刷新 | boolean | - | false |
15+
| frequency | 请求间隔 | number \| string | - | 3 |
16+
| showTitleUnit | 是否显示标题和单位 | boolean | - | true |
17+
| title | 标题 | string | - | '指标标题' |
18+
| unit | 单位 | string | - | '单位' |
19+
| num | 数据 | string \| number | - | 0 |
20+
| decimals | 小数位数 | number | - | -1 (计算结果的默认小数位数) |
21+
| mode | 排列方式 | string | 'vertical' \| 'horizontal' | 'vertical' |
22+
| separator | 千分符 | string | - | ','(英文逗号) |
23+
| separatorBackground | 分隔符背景 | boolean | - | false |
24+
| animated | 数字动画 | boolean | - | false |
25+
| duration | 动画时长 | string \| number | - | 1000 |
26+
| fontWeight | 字体粗细 | string \| number | 'lighter' \| 'normal' \| 'bolder' | 'border' |
27+
| fontSize | 字体大小 | string \| number | - | - |
28+
| numSpacing | 字体间距 | number | - | 0 |
29+
| indicatorColor | 数据颜色 | string | - | - |
30+
| numBackground | 背景样式 | object | - | { color: 'rgba(0, 0, 0, 0)', image: '' } |
31+
| thresholdsStyle | 阈值样式 | <a href="#thresholdsstyle">ThresholdsStyle </a> | - | [] |
32+
33+
### ThresholdsStyle
34+
35+
```json
36+
// 阈值格式如下
37+
[
38+
{
39+
"max": 50,
40+
"color": "#0CD54A"
41+
},
42+
{
43+
"min": 50,
44+
"max": 80,
45+
"color": "#F7682D"
46+
},
47+
{
48+
"min": 80,
49+
"color": "#DD2C2C"
50+
}
51+
]
52+
```

0 commit comments

Comments
 (0)