# greatCircle

Calculate great circles routes as LineString
将大圆路径计算为 LineString

参数

参数 类型 描述
start Coord 源点
end Coord 目标点
options Object 可选参数:见下文

options选项

属性 类型 默认值 描述
properties Object {} line feature properties
npoints number 100 点的数量
offset number 10 偏移量控制了跨越日期线的线条被分割的概率。数值越高,可能性越大。

返回

Feature <LineString> - great circle line feature

示例

var start = turf.point([-122, 48]);
var end = turf.point([-77, 39]);

var greatCircle = turf.greatCircle(start, end, {'name': 'Seattle to DC'});
Last Updated: 6/23/2023, 10:33:35 PM