5
您如何使用Google Maps V3 API在客戶端進行逆向地理編碼?從地址到LatLng的前向地理編碼是直接的(下面的代碼),但是您如何做同樣的反向地理編碼?客戶端逆向地理編碼(Google Maps V3 API)
師範大學地理編碼代碼:
geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
您是否知道反向地理編碼請求是否有助於2500 /天的正常地理編碼限制? – Nyxynyxx
我幾乎可以肯定它的確如此。這與使用不同參數的方法調用相同。只要確保你正在從客戶端進行地理編碼,你應該沒問題。 – Khepri
太好了,謝謝! – Nyxynyxx