-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;
});