uniapp微信小程序外包项目开发,要求获取当前经纬度并与接口返回的经纬度进行计算,获取两个经纬度点之间的距离,并显示在页面中。
计算距离
getDistance() {
var that = this;
this.distance = getDistance(this.data.Latitude, this.data.Longitude, that.latitude, that.longitude) * 1000
},
方法
/**
* @desc 由经纬度计算两点之间的距离,la为latitude缩写,lo为longitude
* @param la1 第一个坐标点的纬度
* @param lo1 第一个坐标点的经度
* @param la2 第二个坐标点的纬度
* @param lo2 第二个坐标点的经度
* @return (int)s 返回距离(单位千米或公里)
*/
const getDistance = (la1, lo1, la2, lo2) => {
var La1 = la1 * Math.PI / 180.0;
var La2 = la2 * Math.PI / 180.0;
var La3 = La1 - La2;
var Lb3 = lo1 * Math.PI / 180.0 - lo2 * Math.PI / 180.0;
var s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(La3 / 2), 2) + Math.cos(La1) * Math.cos(La2) * Math.pow(Math
.sin(Lb3 / 2), 2)));
s = s * 6378.137;
s = Math.round(s * 10000) / 10000;
s = s.toFixed(2);
return s;
}