diff --git a/docs/api/district/baselayer.en.md b/docs/api/district/baselayer.en.md index aa8d169cfc..b850b818e6 100644 --- a/docs/api/district/baselayer.en.md +++ b/docs/api/district/baselayer.en.md @@ -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 +图层事件可以通过该属性进行设置 ### 方法 diff --git a/docs/api/district/baselayer.zh.md b/docs/api/district/baselayer.zh.md index 9c17774694..b3774bf7d4 100644 --- a/docs/api/district/baselayer.zh.md +++ b/docs/api/district/baselayer.zh.md @@ -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 + 图层事件可以通过该属性进行设置 ### 方法 diff --git a/examples/district/basic/API.en.md b/examples/district/basic/API.en.md index 292e8491e8..4c05d0ec96 100644 --- a/examples/district/basic/API.en.md +++ b/examples/district/basic/API.en.md @@ -107,6 +107,8 @@ District 提供polygon数据需要跟用户的属性数据,通过关系字段 行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等, #### fillLayer + + 图层事件可以通过该属性进行设置 ### 方法 diff --git a/examples/district/basic/API.zh.md b/examples/district/basic/API.zh.md index d6d196534a..c23e70e4cf 100644 --- a/examples/district/basic/API.zh.md +++ b/examples/district/basic/API.zh.md @@ -115,6 +115,7 @@ District 提供polygon数据需要跟用户的属性数据,通过关系字段 行政区划组件每个图层有多个子图层组成,如标注层,国界线、省界线等等, #### fillLayer + 图层事件可以通过该属性进行设置 ### 方法 diff --git a/stories/District/Layer/Country.tsx b/stories/District/Layer/Country.tsx index 5aba844bf8..4aab5011c7 100644 --- a/stories/District/Layer/Country.tsx +++ b/stories/District/Layer/Country.tsx @@ -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', diff --git a/stories/Layers/components/heatmap2.tsx b/stories/Layers/components/heatmap2.tsx index cb54ba1e59..4fc3ce6a40 100644 --- a/stories/Layers/components/heatmap2.tsx +++ b/stories/Layers/components/heatmap2.tsx @@ -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); });