根据点、距离和角度计算目标点(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.
参数
参数 | 类型 | 描述 |
---|---|---|
origin | Coord | 起点 |
distance | number | 到起点的距离 |
bearing | number | 范围从-180到180 |
options | Object | 配置项 |
配置项(Options)
Prop | 类型 | 默认值 | 描述 |
---|---|---|---|
units | string | kilometers | 你可以选择:degrees(角度) radians(弧度) miles(英里) 或者 kilometers(千米) |
properties | Object | {} | 为点设置GeoJson 属性 |
返回(Returns)
Feature <Point>
- 目标点
示例