docs(docs): 更新文档和demo

fix #423
This commit is contained in:
thinkinggis 2020-07-03 19:21:04 +08:00
parent b82c87a501
commit 0ad78aa9a7
6 changed files with 9 additions and 4 deletions

View File

@ -25,7 +25,7 @@ order: 2
对照表 `Array [string, string]` 第一个值为空间数据字段,第二个为传入数据字段名
- depth 数据显示层级 0国家级1:省级2: 市级3线级
- showBorder `boolean` 是否显示国界线,默认显示,不建议不显示
- simplifyTolerance 数据抽稀容差,默认不抽稀 `boolean | number` 单位为度一度约111km数字越大精度越低。参考设置数据 0.01
- simplifyTolerance 数据抽稀容差,默认不抽稀 `boolean | number` 单位为度,一度约 111km数字越大精度越低。参考设置数据 0.01
- label 标注配置项 支持常量,不支持数据映射
- enable `boolean` 是否显示标注
@ -92,6 +92,7 @@ District 提供 polygon 数据需要跟用户的属性数据,通过关系字
行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等,
#### fillLayer
图层事件可以通过该属性进行设置
### 方法

View File

@ -22,7 +22,7 @@ order: 2
- data `Array` 属性数据用于可视化渲染
- visible 地图是否可见
- joinBy 数据关联,属性数据如何内部空间数据关联绑定 目前支持 NAME_CHN,adcode 字段连接
- simplifyTolerance 数据抽稀容差,默认不抽稀 `boolean | number` 单位为度一度约111km数字越大精度越低。参考设置数据 0.01
- simplifyTolerance 数据抽稀容差,默认不抽稀 `boolean | number` 单位为度,一度约 111km数字越大精度越低。参考设置数据 0.01
对照表 `Array [string, string]` 第一个值为空间数据字段,第二个为传入数据字段名
- depth 数据显示层级 0国家级1:省级2: 市级3线级
- label 标注配置项 支持常量,不支持数据映射
@ -97,6 +97,7 @@ District 提供 polygon 数据需要跟用户的属性数据,通过关系字
行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等,
#### fillLayer
图层事件可以通过该属性进行设置
### 方法

View File

@ -107,6 +107,8 @@ District 提供polygon数据需要跟用户的属性数据通过关系字段
行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等,
#### fillLayer
图层事件可以通过该属性进行设置
### 方法

View File

@ -115,6 +115,7 @@ District 提供polygon数据需要跟用户的属性数据通过关系字段
行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等,
#### fillLayer
图层事件可以通过该属性进行设置
### 方法

View File

@ -202,14 +202,13 @@ export default class Country extends React.Component {
geoDataLevel: 2,
joinBy: ['NAME_CHN', 'name'],
showBorder: false,
simplifyTolerance: 0.02,
label: {
field: 'name',
size: 10,
padding: [5, 5],
textAllowOverlap: true,
},
depth: 1,
depth: 2,
fill: {
color: {
field: 'NAME_CHN',

View File

@ -71,6 +71,7 @@ export default class HeatMapLayerDemo extends React.Component {
positions: [0, 0.2, 0.4, 0.6, 0.8, 1.0],
},
});
scene.render();
console.log('更新完成');
}, 2000);
});