我的編程知識非常有限,我正在進行包括編程在內的大學項目。計算融合表中點之間的距離
我想要做的是一張地圖,顯示您當前的位置和回收點的位置。我已經完成了當前的位置部分,並使用融合表在地圖上顯示回收點。但我也想要選擇找到您當前位置和回收點之間的最短路線。
那麼它會做的是計算您的當前位置和每個回收點之間的距離,並顯示最短的一個。
現在我想了解谷歌地圖API教程,我不知道這是可能的,使用融合表。所以我想知道是否有人知道如何做到這一點。
非常感謝!
<!DOCTYPE html>
<html>
<head>
<section id="wrapper">
Clique no botão "permitir" para deixar o browser encontrar a sua localização
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<article>
</article>
<script>
function success(position) {
var mapcanvas = document.createElement('div');
mapcanvas.id = 'mapcontainer';
mapcanvas.style.height = '350px';
mapcanvas.style.width = '450px';
document.querySelector('article').appendChild(mapcanvas);
var coords = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var options = {
zoom: 15,
center: coords,
mapTypeControl: false,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.SMALL
},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("mapcontainer"), options);
var marker = new google.maps.Marker({
position: coords,
map: map,
title:"You are here!"
});
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'Coordenadas',
from: '1CwMDrcxebjsb8sjG42rbGVAZB25Zi7CvaLJXOCM'
},
});
layer.setMap(map)
}
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success);
} else {
error('Geo Location is not supported');
}
</script>
</section>
</head>
<body>
</body>
</html>
表中存儲了多少「回收點」? – geocodezip
現在,只有15個,但我沒有添加點。我仍在等待回收公司的信息。 – JGuerreiro