在 JavaScript 中计算两个坐标之间的距离?



我正在尝试以公里为单位计算两个经度和经度之间的距离,并在标签或段落中显示该距离。

  • 我有一个地址,我需要从中找出lat1lon1.我能够弄清楚这一点。
  • 我需要找到我当前位置的lat2lon2。我也能够弄清楚这一点。

现在,一旦我有了lat1lon1lat2lon2- 我需要找到这些坐标之间的距离。下面是我的代码,但一旦我提醒它,它就会NaN给出距离。我不确定这里出了什么问题。这也是我在这里做的正确方式吗?

<!DOCTYPE html>
<html>
<style>
body {
margin: 0;
padding: 0;
font: 12px sans-serif;
}
h1, p {
margin: 0;
padding: 0;
}
#map_div{
width:400px;
height:400px;
margin: 0 auto;
}
#outer {
width:400px;
height:50px;
margin:0 auto;
text-align:center;
}
#outer input[type="text"] {
display: block;
margin: 0 auto;
}
</style>
<body>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?v=3&amp;sensor=false"></script>
<div id="outer">
<p id="distance_text">this is 201 km away from</p>
<input type="text" name="location" value="Current Location"><br>
<div id="map_div"></div>
</div>
</body>
<script type="text/javascript">
var lat1;
var lon1;
var lat2;
var lon2;
var geocoder = new google.maps.Geocoder();
var address = "1750 riverside drive, ottawa, ontario, canada";
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
lat1 = results[0].geometry.location.lat();
lon1 = results[0].geometry.location.lng();
}
});
var x = document.getElementById("distance_text");
getLocation();
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.watchPosition(showPosition);
} else { 
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
lat2 = position.coords.latitude;
lon2 = position.coords.longitude;
}
var distance = getDistanceFromLatLonInKm(lat1,lon1,lat2,lon2);
alert(distance);
function getDistanceFromLatLonInKm(lat1,lon1,lat2,lon2) {
var R = 6371; // Radius of the earth in km
var dLat = deg2rad(lat2-lat1);
var dLon = deg2rad(lon2-lon1); 
var a = 
Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2)) * 
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;
}
function deg2rad(deg) {
return deg * (Math.PI/180)
}
</script>
</html>

计算后,我需要用实际距离替换201 km。这是我的 jsfiddle

您可以使用谷歌地图距离方法,但它需要LatLng对象

试试这个:

const from = new google.maps.LatLng(lat1, lng1);
const to = new google.maps.LatLng(lat2, lng2);
const distance =  google.maps.geometry.spherical.computeDistanceBetween(from,to)

这是工作 JSfiddle 您可能需要在地图脚本标记中添加 API 密钥: https://jsfiddle.net/ruokyanv/

更改 p 标记距离:是的,您可以在 HTML 中注入 JS 文件并使用 jQuery $:

var distance = `this is ${distance} km away from`
$('#distance_text').val(distance)

让我知道问题是否仍然存在。

您可以使用 HERE maps API。

var distance = "https://route.ls.hereapi.com/routing/7.2/calculateroute.json?apiKey="+ apiKey +"&mode=balanced;car&waypoint0=geo!"+startingPoint+"&waypoint1=geo!"+endingPoint;
var xmlHttp = new XMLHttpRequest();
xmlHttp .open( "GET", distance, false ); 
xmlHttp .send( null );
var routeResponse = JSON.parse(xmlHttp .responseText);
var distance = (routeResponse.response.route[0].summary.distance); 

起始点和终点基本上是坐标(纬度和经度(。

相关内容

  • 没有找到相关文章

最新更新