Dal*_*lee 17 javascript gps distance geolocation latitude-longitude
在浏览器中使用JavaScript,如何确定从当前位置到具有纬度和经度的其他位置的距离?
Fra*_*len 43
如果您的代码在浏览器中运行,则可以使用HTML5地理位置API:
window.navigator.geolocation.getCurrentPosition(function(pos) {
console.log(pos);
var lat = pos.coords.latitude;
var lon = pos.coords.longitude;
})
Run Code Online (Sandbox Code Playgroud)
一旦知道当前位置和"目标"的位置,就可以按照本问题中记录的方式计算它们之间的距离:计算两个纬度 - 经度点之间的距离?(Haversine公式).
所以完整的脚本变成:
function distance(lon1, lat1, lon2, lat2) {
var R = 6371; // Radius of the earth in km
var dLat = (lat2-lat1).toRad(); // Javascript functions in radians
var dLon = (lon2-lon1).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; // Distance in km
return d;
}
/** Converts numeric degrees to radians */
if (typeof(Number.prototype.toRad) === "undefined") {
Number.prototype.toRad = function() {
return this * Math.PI / 180;
}
}
window.navigator.geolocation.getCurrentPosition(function(pos) {
console.log(pos);
console.log(
distance(pos.coords.longitude, pos.coords.latitude, 42.37, 71.03)
);
});
Run Code Online (Sandbox Code Playgroud)
显然我现在离马萨诸塞州波士顿市中心6643米(这是硬编码的第二个位置).
有关更多信息,请参阅以下链接
| 归档时间: |
|
| 查看次数: |
26441 次 |
| 最近记录: |