mirror of https://gitee.com/antv-l7/antv-l7
594 B
594 B
thetaOffset 弧度参数
thetaOffset 参数 表示 arc 弧线的弧度,默认值是 0.314
const layer = new LineLayer({})
.source(data, {
parser: {
type: 'csv',
x: 'lng1',
y: 'lat1',
x1: 'lng2',
y1: 'lat2',
},
})
.size(1)
.shape('arc')
.color('#8C1EB2')
.style({
thetaOffset: 0.35,
});