mirror of https://gitee.com/antv-l7/antv-l7
2.3 KiB
2.3 KiB
title | order |
---|---|
3D 柱图 | 1 |
3D
柱图是在地理区域上方显示的不同高度的柱体,柱子的高度与其在数据集中的数值会成正比。
实现
下面我们来介绍如何绘制一个常见的 3D
柱图。
- 你可以在
L7
官网上找到在线案例
import { Scene, PointLayer } from '@antv/l7';
import { GaodeMap } from '@antv/l7-maps';
const scene = new Scene({
id: 'map',
map: new GaodeMap({
pitch: 66.02383,
center: [ 121.400257, 31.25287 ],
zoom: 14.55,
rotation: 134.95
})
});
fetch('https://gw.alipayobjects.com/os/basement_prod/893d1d5f-11d9-45f3-8322-ee9140d288ae.json')
.then(res => res.json())
.then(data => {
const pointLayer = new PointLayer({})
.source(data, {
parser: {
type: 'json',
x: 'longitude',
y: 'latitude'
}
})
.shape('name', [ 'cylinder', 'triangleColumn', 'hexagonColumn', 'squareColumn' ])
.color('name', [ '#739DFF', '#61FCBF', '#FFDE74', '#FF896F' ]);
.size('unit_price', h => [ 6, 6, h / 500 ]
scene.addLayer(pointLayer);
})
shape
3D
柱图 shape
方法支持以下参数:
cylinder
圆柱体triangleColumn
三角柱hexagonColumn
六角柱squareColumn
四角柱
size
3D
柱图的 size
支持设置三个维度 [w, l, z]
:
w
宽l
长z
高度
size
设置常量
layer.size([2,2,3])
size
设置回调函数
layer.size('unit_price', h => {
return [ 6, 6, h / 500 ];
})
animate
3D
柱图支持生长动画,通过 animate
方法进行设置,具体使用可以查看详细文档
style
3D
柱图有特殊的 style
属性,具体使用可以查找详细文档