mirror of https://gitee.com/antv-l7/antv-l7
707 B
707 B
title | order |
---|---|
填充图 | 1 |
markdown:docs/common/style.md
使用
import { PolygonLayer } from '@antv/l7';
const layer = new PolygonLayer();
shape
绘制填充图,shape 为fill
常量不支持数据映射
layer.shape('fill');
size
填充图无 size 不需要设置 size
额外的 style 配置
- opacityLinear 设置几何填充图的径向渐变
style({
opacityLinear: {
enable: true, // true - false
dir: 'in' // in - out
}
})
markdown:docs/common/layer/base.md