计算两点之间的弧线(greatCircle)
将弧线(Great Circle)计算为LineString或MultiLineString。如果输入的起点和终点跨越了180度经线,则结果将被拆分为MultiLineString表示
Calculate great circles routes as LineString or MultiLineString. If the start and end points span the antimeridian, the resulting feature will be split into a MultiLineString .
参数
参数 | 类型 | 描述 |
---|---|---|
start | Coord | 起始点 |
to | Coord | 终点 |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
properties | Object | {} | 线的Feature 属性 |
npoints | number | 100 | 离散点数量 |
offset | number | 10 | 控制跨越日期变更线的线是否被拆分,该参数值越高表示拆分的可能性越大 |
返回(Returns)
Feature <(LineString|MultiLineString)>
- 弧线
示例