2
我只有lon和lat。 我需要在給定的lon和lat對象的地址和電話號碼。 我該如何使用JavaScript?如何在JavaScript中使用經度和緯度得到地點名稱
我還需要顯示一個標記(infowindow.set(地址和電話號碼))。
這是我的代碼:
var marker = new google.maps.Marker({
position: new google.maps.LatLng(aCars[0],aCars[1]),
map: map,
title: 'My workplace',
clickable: false,
icon: 'images/images.png'
});
google.maps.event.addListener(marker,'mouseover',function() {
infowindow.setContent( );
infowindow.open(map, this);
});
如何在我的code.i得到地名有lat和使用LAN和LAT lan.any shortget在那裏。 – SANR1103219 2011-12-22 08:01:30
查看Google Maps JS API v3文檔,這是一個反向地理編碼api的javascript示例的直接鏈接:http://code.google.com/apis/maps/documentation/javascript/services.html#ReverseGeocoding – ChrisR 2011-12-22 08:04:51
非常非常感謝你,他工作得很好。但如何獲得電話號碼。 – SANR1103219 2011-12-22 08:22:41