Skip to content
On this page

计算两点之间的方位角(bearing)

js
npm install @turf/bearing

传入两个点找到它们之间的地理方位角,即从北线(0度)测量的角度。

Takes two points and finds the geographic bearing between them, i.e. the angle measured in degrees from the north line (0 degrees)

TIP

该方法接受两个点作为输入,并返回它们之间的方位角度数,即以北线为基准的角度量度。

参数

参数类型描述
startCoord起始点
endCoord终点
optionsObject配置项

配置项(Options)

Prop类型默认值描述
finalbooleanfalse如果为true,将计算最终方位角

返回(Returns)

number -方位角以小数度表示,范围在-180到180度之间(顺时针为正方向)

示例