mirror of https://gitee.com/antv-l7/antv-l7
97 lines
2.0 KiB
Markdown
97 lines
2.0 KiB
Markdown
---
|
|
title: 聚合图
|
|
order: 5
|
|
---
|
|
|
|
`markdown:docs/common/style.md`
|
|
|
|
## 使用
|
|
|
|
目前只有点数据支持聚类方法
|
|
|
|
数据聚合主要从数据层数据,因此需要在 Source 方法配置 cluster 参数
|
|
|
|
### Source
|
|
|
|
[source 文档](../source/source)
|
|
|
|
### 配置项
|
|
|
|
- cluster **boolean** 是否聚合
|
|
- clusterOption 聚合配置项
|
|
- radius 聚合半径 **number** default 40
|
|
- minZoom: 最小聚合缩放等级 **number** default 0
|
|
- maxZoom: 最大聚合缩放等级 **number** default 16
|
|
|
|
数据聚合之后,数据会增加 point_count 属性,在可视化渲染时可以根据 point_count 进行数据映射。
|
|
|
|
#### 方法
|
|
|
|
**getClusters(zoom: number)**
|
|
|
|
获取指定缩放等级的聚合数据
|
|
|
|
- zoom 缩放等级
|
|
|
|
**getClustersLeaves(id: string)**
|
|
|
|
根据 id 获取聚合节点的数据,每个聚合节点会有一个唯一 ID
|
|
|
|
- id 聚合数据 id
|
|
|
|
```javascript
|
|
layer.source(pointsData, {
|
|
cluster: true,
|
|
});
|
|
|
|
// 设置配置项
|
|
layer.source(pointsData, {
|
|
cluster: true,
|
|
clusterOption: {
|
|
radius: 40,
|
|
},
|
|
});
|
|
```
|
|
|
|
### 方法
|
|
|
|
获取聚合节点的原始数据,通过 Source 的 getClustersLeaves 方法
|
|
|
|
```javascript
|
|
const source = layer.getSource();
|
|
source.getClustersLeaves(id);
|
|
layer.on('click', (e) => {
|
|
console.log(source.getClustersLeaves(e.feature.cluster_id));
|
|
});
|
|
```
|
|
|
|
### 完整示例
|
|
|
|
```javascript
|
|
const pointLayer = new PointLayer({})
|
|
.source(pointsData, {
|
|
cluster: true,
|
|
})
|
|
.shape('circle')
|
|
.scale('point_count', {
|
|
type: 'quantile',
|
|
})
|
|
.size('point_count', [5, 10, 15, 20, 25])
|
|
// .size(10)
|
|
.color('red')
|
|
.style({
|
|
opacity: 0.3,
|
|
strokeWidth: 1,
|
|
});
|
|
```
|
|
|
|
[聚合图使用案例](../../../examples/point/cluster#cluster)
|
|
|
|
### FAQ
|
|
|
|
PointLayer 的聚合图采用 WebGL 绘制,不支持自定义具体聚合样式,如果有自定义的需求可以使用 MarkerLayer 的聚合功能,你可以通过 Dom 完全自定义样式。
|
|
|
|
[MarkerLayer 聚合](../component/markerLayer)
|
|
|
|
`markdown:docs/common/layer/base.md`
|