计算两点之间的方位角(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
该方法接受两个点作为输入,并返回它们之间的方位角度数,即以北线为基准的角度量度。
参数
参数 | 类型 | 描述 |
---|---|---|
start | Coord | 起始点 |
end | Coord | 终点 |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
final | boolean | false | 如果为true ,将计算最终方位角 |
返回(Returns)
number
-方位角以小数度表示,范围在-180到180度之间(顺时针为正方向)
示例