0

我编写了一个函数来返回传递给该函数的任何 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);  
4

1 回答 1

0

这将是因为您正在从嵌套函数内部返回城镇。对 geocoder.geocode 的调用是异步的,并且会在一段时间后返回。您可以将其设置为如下变量:

var theTown = null;
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;

        theTown = town; // Returns Norwich when alerted using the e.g below.
    }           
});
}
于 2012-10-03T00:01:41.217 回答