gpt4 book ai didi

javascript - 如何计算折线距离?

转载 作者:行者123 更新时间:2023-11-30 07:09:29 25 4
gpt4 key购买 nike

function createLine()
{

geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(7.5653, 80.4303);
var mapOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("directionpanel"), mapOptions);

var address = document.getElementById('startvalue').value;
var address2 = document.getElementById('endvalue').value;

var temp, temp2;

geocoder.geocode({ 'address': address }, function (results, status) {
temp = results[0].geometry.location;
geocoder.geocode({ 'address': address2 }, function (results, status) {
temp2 = results[0].geometry.location;

var route = [
temp,
temp2
];

var polyline = new google.maps.Polyline({
path: route,
strokeColor: "#ff0000",
strokeOpacity: 0.6,
strokeWeight: 5
});

polyline.setMap(map);
});
});
}

这段代码工作正常。我想计算我创建的线的距离。我想通过警报以米为单位显示此值。请帮助我...(在这种情况下,两点直接与直线相连。我想计算直线距离。)

最佳答案

使用google.maps.geometry.spherical.computeLength (一定要包括 geometry library )

function createLine()
{

geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(7.5653, 80.4303);
var mapOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("directionpanel"), mapOptions);

var address = document.getElementById('startvalue').value;
var address2 = document.getElementById('endvalue').value;

var temp, temp2;

geocoder.geocode({ 'address': address }, function (results, status) {
temp = results[0].geometry.location;
geocoder.geocode({ 'address': address2 }, function (results, status) {
temp2 = results[0].geometry.location;

var route = [
temp,
temp2
];

var polyline = new google.maps.Polyline({
path: route,
strokeColor: "#ff0000",
strokeOpacity: 0.6,
strokeWeight: 5
});

var lengthInMeters = google.maps.geometry.spherical.computeLength(polyline.getPath());
alert("polyline is "+lengthInMeters+" long");

polyline.setMap(map);
});
});
}

Working example (更新了您上一个问题中的示例以包括长度计算)

代码片段:

var geocoder;
var map;

function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(7.5653, 80.4303);
var mapOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map"), mapOptions);

createLine();
}

function createLine() {

var address = document.getElementById('startvalue').value;
var address2 = document.getElementById('endvalue').value;

var temp, temp2;

geocoder.geocode({
'address': address
}, function(results, status) {
if (status != "OK") alert("geocode of address:" + address + " failed, status=" + status);
temp = results[0].geometry.location;
document.getElementById('results').innerHTML += temp.toUrlValue() + "<br>";
geocoder.geocode({
'address': address2
}, function(results, status) {
if (status != "OK") alert("geocode of address:" + address + " failed, status=" + status);
temp2 = results[0].geometry.location;
document.getElementById('results').innerHTML += temp2.toUrlValue() + "<br>";

var route = [
temp,
temp2
];

var polyline = new google.maps.Polyline({
path: route,
strokeColor: "#ff0000",
strokeOpacity: 0.6,
strokeWeight: 5
});

var lengthInMeters = google.maps.geometry.spherical.computeLength(polyline.getPath());
// alert("polyline is "+lengthInMeters+" long");
document.getElementById('results').innerHTML += "Polyline is " + lengthInMeters + " meters long<br>";

polyline.setMap(map);
var bounds = new google.maps.LatLngBounds();
bounds.extend(temp);
bounds.extend(temp2);
map.fitBounds(bounds);
});
});
}
google.maps.event.addDomListener(window, 'load', initialize);
html,
body,
#map {
margin: 0;
padding: 0;
height: 100%;
}
<input id="startvalue" type="text" width="90" value="Megaswewa, Sri Lanka"></input>
<input id="endvalue" type="text" width="90" value="Kandy, Sri Lanka"></input>
<input type="button" value="Geocode" onclick="createLine()"></input>
<div id="map" style="width:600px;height:500px;"></div>
<div id="results"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&libraries=geometry"></script>

关于javascript - 如何计算折线距离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15796372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com