回调函数不起作用

时间:2013-07-27 20:04:04

标签: javascript google-maps reverse-geocoding

我创建了一个脚本,根据您点击鼠标的区域在地图上放置标记。放置该标记后,当鼠标悬停在标记上时,应显示一个信息框,其中包含放置标记的位置。但是,信息框没有显示,因为当我调用“info_text”时,它返回undefined。我意识到我需要添加一个回调函数,但我认为我没有正确实现它。任何人都可以帮我修复我的代码吗?感谢

我的代码:

var geocoder;

function initialize() 
{

  geocoder = new google.maps.Geocoder();
  var event = google.maps.event.addListener;

  // intializing and creating the map.
  var mapOptions = {
    zoom: 4,
    center: new google.maps.LatLng(-25.363882, 131.044922),
    mapTypeId: google.maps.MapTypeId.TERRAIN
  };

  var map = new google.maps.Map(document.getElementById('map'),
      mapOptions);

   event(map,'click',function(e){
    var marker = placeMarker_and_attachMessage(e.latLng,map,count);
    count = count + 1;
  });

} // end of initalize.

function placeMarker_and_attachMessage(position,map) 
{
    var event = google.maps.event.addListener;
    var message = ['This', 'is', 'the', 'secret', 'message'];

    var marker = new google.maps.Marker({
        position: position,
        map: map
    }); 

    var pos = info_text(position);
    alert('pos is: ' + pos);

    var infowindow = new google.maps.InfoWindow({
            content: 'hello'
        });

    event(marker,'mouseover',function(){
        infowindow.open(map,this);
    });

    event(marker,'mouseout',function(){
        infowindow.close();
    });

} // end of function.

function info_text(position)
{
    var lat = parseFloat(position.lat());
    var lng = parseFloat(position.lng());
    alert('lat,lng is: ' + (lat,lng));
    var latlng = new google.maps.LatLng(lat,lng);
    alert('just before geocode');
    geocoder.geocode({'latLng': latlng}, function(results, status) 
    {
        if (status == google.maps.GeocoderStatus.OK)
        {
            alert('in info_text If statement');
            if(results[1])
            {
                alert('in inner if statement');
                var finalResult = myCallback(results[1].formatted_address);
                 return finalResult;
            }
            else
            {
                alert('no results found');
            }
        }
        else
        {
            alert('could not pinpoint location');
        }

    });
}

function myCallback(loc)
{
    alert('i have a location!');
    return loc;
}

google.maps.event.addDomListener(window, 'load', initialize); 

1 个答案:

答案 0 :(得分:0)

您的功能info_text没有return任何内容,所以这一行:

var pos = info_text(position);

pos未定义的地方。

您需要包含:

return something;

在你的功能中的某个时刻(就像你已经做得更深)。

<强>加 您的函数myCallback返回一个值,但使用它的位置:

myCallback(results[1].formatted_address);

它不会将返回值存储在任何地方 - 它只是被丢弃。