-1
特定の国、特にGoogleマップが返す 'short_name'フィールドで利用可能な都市のリストを見ることができるのだろうかと思っていました。私はこれを知ってほしい理由は、私はちょうどGoogleが私の地理場所Google Map 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;
});