这是有公式的,照算可也:
其中R是球体半径,arccos,反余弦。记得经纬度要转成弧度才好计算。
function getOffset(p,p0){//计算p和p0之间的距离
//x:经度 y:纬度
let x = getRadian(p.x);//经度转为弧度
let y = getRadian(p.y);
let x0 = getRadian(p0.x);
let y0 = getRadian(p0.y);
let R = 6371.393;//地球半径,千米
let acos = Math.acos;
let cos = Math.cos;
let sin = Math.sin;
let pi = 3.1415926;
//R * arccos(cos(y1) * cos(y2) * cos(x2 - x1) + sin(y1) * sin(y2))
return off = R * acos(cos(y) * cos(y0) * cos(x0 - x) + sin(y) * sin(y0));
function getRadian(jw){//经纬度转弧度
return (jw * pi) / 180;
}
}