antv-l7/docs/api/line_layer/features/thetaOffset.zh.md

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,
  });
案例

在线案例