Skip to content
On this page

根据距离和角度,返回一个点的坐标(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.

参数

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

配置项(Options)

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

返回(Returns)

Feature <Point> - 目标点

示例