2012-05-28 66 views

回答

0

的郵政編碼被返回作爲a component of the address。下面是你如何在結果中尋找它的一個例子:

new google.maps.Geocoder().geocode({ 
     'address': '20 Broadwick Street, London', 
     'latLng': google.maps.LatLng(51.5136905, -0.1354) 
    }, 
    function(results, status) { 
     if (status == google.maps.GeocoderStatus.OK) { 
      address = results[0].address_components; 
      for (p = address.length-1; p >= 0; p--) { 
       if (address[p].types.indexOf("postal_code") != -1) { 
        console.log(address[p].long_name); 
       } 
      } 
     } 
    } 
); 

希望有幫助。

相關問題