根据距离和角度,返回一个点的坐标(destination)
js
npm install @turf/destination
对于给定的一个 Point
,通过指定的距离单位(度、弧度、英里或千米)和方位角计算目的地点的位置。此函数使用哈弗辛(Haversine
)公式来计算全球曲率。
Takes a Point and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the Haversine formula to account for global curvature.
参数
参数 | 类型 | 描述 |
---|---|---|
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>
- 目标点
示例