Google地图:返回无法在反向地理编码中使用

时间:2012-09-14 08:17:55

标签: javascript google-maps-api-3 return return-value anonymous-function

我正在尝试ReverseGeCoding工作但我无法获得返回值

function reverseGeoCode(lat,lng) {
 var reverseGeoAddress = '';
 var geocoder = new google.maps.Geocoder();
 var latlng = new google.maps.LatLng(lat, lng);
 geocoder.geocode({'latLng': latlng}, function(results, status) {
     if (status == google.maps.GeocoderStatus.OK) {
         if (results[1]) {
             if(results[1].formatted_address.length){
                 reverseGeoAddress = results[1].formatted_address;
                 //NOTE: when i console.log(reverseGeoAddress );
                 //its working fine i am getting the address
                 return reverseGeoAddress;
                   //but return not working.

             }  
         }
      } 
  });
}

当我调用我的函数时

   var address = reverseGeoCode(31.518945,74.349316);

现在每次我的地址变量都是“未定义”; 为什么这样做? 任何提示?

1 个答案:

答案 0 :(得分:4)

函数reverseGeoCode没有任何返回值

return reverseGeoAddress; is inside anonymous function.

简单修复就是 - 你可以使用回调,因为它是异步函数。 "回调"可以是您调用的地方的处理程序。

// Invoking reverseGeoCode....
reverseGeoCode(lat,lng, function(myAddress){ 
  // Your custom code goes here...
});

function reverseGeoCode(lat,lng, callback) {
var reverseGeoAddress = '';
 var geocoder = new google.maps.Geocoder();
 var latlng = new google.maps.LatLng(lat, lng);
 geocoder.geocode({'latLng': latlng}, function(results, status) {
     if (status == google.maps.GeocoderStatus.OK) {
         if (results[1]) {
             if(results[1].formatted_address.length){
                 reverseGeoAddress = results[1].formatted_address;
                 // Callback the handler if it exists here
                 // No return value
                 callback(reverseGeoAddress);
             }  
         }
      } 
  });
}