2016-07-19 230 views
-1

我想知道我是否能看到某個國家的可用城市列表,特別是谷歌地圖返回的'short_name'字段。我想知道這種情況的原因是,我只是想看看的可能性,谷歌將在我的地理位置谷歌地圖API某個國家的城市列表

function writeAddressName(latLng) { 
var geocoder = new google.maps.Geocoder(); 
geocoder.geocode({ 
    "location": latLng 
}, 
function(results, status) { 
    if (status == google.maps.GeocoderStatus.OK) 
     document.getElementById("location").value = results[0].address_components[6].short_name;  
}); 

回答

0

有通過谷歌地圖API的使用沒有這樣的功能填補。

而且,你不應該依賴於地址組件陣列中的確切位置:

results[0].address_components[6].short_name

相反,你必須遍歷地址組件陣列,找到一個具有「地方」在類型字段。

相關問題