0

我有以下代码:

/*
 * converts a string to geolocation and returns it
 */

function stringToLatLng(string){
    if(typeof string == "string"){
        geocoder = new google.maps.Geocoder();
        geocoder.geocode( { 'address': string}, function(results, status) {
           if (status == google.maps.GeocoderStatus.OK) {
              console.log("LatLng: "+results[0].geometry.location);
              return results[0].geometry.location;
           } else {
              console.log("Geocode was not successful for the following reason: " + status);
           }
        });
   }
}

LatLng 将正确的位置打印到控制台,但是当我写这个时:

var pos = stringToLatLng('New York');
            console.log(pos);

undefined回来。这是为什么?谢谢

4

2 回答 2

2

像这样的东西:

function stringToLatLng(strloc, callback){
    if(typeof string == "string"){
        geocoder = new google.maps.Geocoder();
        geocoder.geocode( { 'address': strloc}, function(results, status) {
           if (status == google.maps.GeocoderStatus.OK) {
              callback.call({}, results[0].geometry.location);
           } else {
              console.log("Geocode was not successful for the following reason: " + status);
           }
        });
   }
}

stringToLatLng('New York', function(pos){
    console.log(pos);
});

在您的代码中,当您返回时,实际上是从 function(results, status){..} 函数返回,而不是 stringToLatLng 函数,正如评论中所说的那样,它是一个异步调用,因此您必须使用回调。

于 2012-09-17T22:10:02.930 回答
0
var latitude = results[0].geometry.location.lat();
var longitude = results[0].geometry.location.lng();

参考: 从地址到纬度和经度数字的 Javascript 地理编码不起作用

于 2012-09-17T22:17:22.020 回答