我正在使用 google map api V3 并希望通过使用下一个函数来获取某个地址的位置:
function findAddress(address) {
var geocoder = new google.maps.Geocoder();
var addrLocation = "";
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
addrLocation = "Location is: " + results[0].geometry.location;
} else {
addrLocation = "Not found"; }
});
return addrLocation;
}
然后我试图调用 findAddress 函数:
function SomeFunction(){
alert(findAddress("New York"));
}
按照我的逻辑,该警报应该返回“addrLocation”值,但它返回的是空白消息。我究竟做错了什么?