我使用谷歌地圖地理編碼器來對郵編進行地理編碼,我希望它能夠返回郵政編碼所在的狀態並將其存儲在變量「local」中。我收到一個錯誤,指出本地是未定義的。爲什麼?谷歌地圖地理編碼器返回狀態
見下面的代碼:
var address=document.getElementById("address").value;
var radius=document.getElementById("radius").value;
var latitude=40;
var longitude=0;
var local;
geocoder.geocode({ 'address': address}, function(results, status){
if (status==google.maps.GeocoderStatus.OK){
latlng=(results[0].geometry.location);
latitude=latlng.lat();
longitude=latlng.lng();
//store the state abbreviation in the variable local
local=results[0].address_components.types.adminstrative_area_level_1;
}
else{
alert("Geocode was not successful for the following reason: " + status);
}
});