Skip to content
On this page

根据点、距离和角度计算目标点(rhumbDestination)

js
npm install @turf/rhumb-destination

根据起点点和一个给定的方位角度,沿着等角导线(Rhumb line)行进特定的距离,计算出达到目标点的位置

Returns the destination Point having travelled the given distance along a Rhumb line from the origin Point with the (varant) given bearing.

参数

参数类型描述
originCoord起点
distancenumber到起点的距离
bearingnumber范围从-180到180
optionsObject配置项

配置项(Options)

Prop类型默认值描述
unitsstringkilometers你可以选择:degrees(角度) radians(弧度) miles(英里) 或者 kilometers(千米)
propertiesObject{}为点设置GeoJson 属性

返回(Returns)

Feature <Point> - 目标点

示例