我编写了一个函数来返回传递给该函数的任何 GPS 坐标的城镇,但由于某种原因它没有返回城镇。如果我提醒城镇,它会告诉我正确的城镇。
代码:
function getTown(latitude,longitude){
// Define Geocoding
var geocoder = new google.maps.Geocoder();
// Using the longitude / latitude get address details
var latlng = new google.maps.LatLng(latitude,longitude);
geocoder.geocode({'latLng': latlng}, function(results, status){
// If response ok then get details
if (status == google.maps.GeocoderStatus.OK) {
var town = results[1].address_components[1].long_name;
return town; // Returns Norwich when alerted using the e.g below.
}
});
}
例子:
getTown(52.649334,1.288052);