# distance

Calculates the distance between two points in degrees, radians, miles, or kilometers. This uses the Haversine formula to account for global curvature.
计算两个点之间的距离,单位可以是度、弧度、英里或公里。该方法使用哈弗赛因公式来考虑全球曲率。

参数

参数 类型 描述
from Coord 源点
to Coord 目标点
options Object 可选参数:见下文

options选项

属性 类型 默认值 描述
units string kilometers 可以是度、弧度、英里或公里

返回

number - 两点之间的距离

示例

var from = turf.point([-75.343, 39.984]);
var to = turf.point([-75.534, 39.123]);
var options = {units: 'miles'};

var distance = turf.distance(from, to, options);
Last Updated: 6/23/2023, 10:33:35 PM