嗨,我一直在努力使用正弦公式来获取用户当前位置和数组中对象之间的距离,我已经找到了这个问题的一个很好的答案,但是当我尝试使用变量而不是实际坐标时,公式会起作用,希望有人会知道我哪里出错了
这是让我走到这一步的问题,谢谢Talkol的回答
这就是我到目前为止所拥有的
navigator.geolocation.getCurrentPosition (function (posa)
{
var lat = posa.coords.latitude.toFixed(6);
var lng = posa.coords.longitude.toFixed(6);
});
function getCurrent() {
var lat1 = lat;
var lon1 = lng;
var lat2 = 42.741;
var lon2 = -71.3161;
Number.prototype.toRad = function() {
return this * Math.PI / 180;
}
var R = 6371; // km
//has a problem with the .toRad() method below.
var x1 = lat2-lat1;
var dLat = x1.toRad();
var x2 = lon2-lon1;
var dLon = x2.toRad();
var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(lat1.toRad()) * Math.cos(lat2.toRad()) *
Math.sin(dLon/2) * Math.sin(dLon/2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c;
alert(d);
var distance = d
$("#distance").val (distance);
}