mirror of https://gitee.com/antv-l7/antv-l7
1.5 KiB
1.5 KiB
title | order |
---|---|
地理围墙 | 4 |
markdown:docs/common/style.md
地理围墙在原有线图层的基础上赋予了高度的概念,其他的使用和普通的线图保持一致
使用
import { LineLayer } from '@antv/l7';
shape
shape 设置成 wall 即可
markdown:docs/api/line_layer/features/linear.zh.md
🌟 目前渐变色的方向为垂直向上
markdown:docs/api/line_layer/features/animate.zh.md
markdown:docs/api/line_layer/features/texture.zh.md
🌟 地理围栏支持了新的样式参数 iconStepCount
- 纹理间隔只有在开启纹理的时候才会生效
- 纹理间隔支持配置纹理之间的间距
- 纹理间隔需要和纹理间距配合使用
.style({
lineTexture: true, // 开启线的贴图功能
iconStep: 40, // 设置贴图纹理的间距
iconStepCount: 4
})
heightfixed
wall 支持了固定高度配置 heightfixed
.style({
heightfixed: true // 默认为 false,开启后实际世界高度不变(注意调整尺寸)
})
markdown:docs/common/layer/base.md