0
我有一個功能,我可以通過點擊地圖給輸入座標。兩個點擊並通過不同的標記獲得兩個座標
我想要在地圖上得到兩點的兩個座標,通過雙擊地圖來獲得他們之間的方向。
我該怎麼做?
var pointa;
var pointb;
google.maps.event.addListener(map,'click',function(event){
var point=new google.maps.LatLng(event.latLng.lat(),event.latLng.lng());
document.path.lat1.value=event.latLng.lat();
document.path.lon1.value=event.latLng.lng();
pointa=new google.maps.Marker({
map: map,
position: point,
icon:'http://google.com/mapfiles/kml/paddle/A.png ',
draggable:true
});
});
可能重複(http://stackoverflow.com/questions/ [得到兩個點通過點擊地圖座標] 19327605 /獲取兩點座標點的地圖) – geocodezip
[數組在Google Maps v3上創建多條路線]的可能重複(http://stackoverflow.com/questions/11778201/array- to-create-multiple-routes-on-google-maps-v3) – geocodezip