0

我的项目搜索 eBay API(使用 PHP 并返回 simpleXML)并返回多个项目的邮政编码(目前为 5 个)。然后使用这些信息在我的网站上的谷歌地图上绘制标记。我想做的是创建多个信息窗口以及这些标记,这样我也可以从 eBay 拍卖返回信息并将其放入信息窗口(拍卖链接、物品图片等),但我没有运气!我似乎无法在我的循环中获得正确的闭包,并且我一直在获取信息窗口中显示的数组中的最后一个邮政编码,而不是实际与该标记相关联的邮政编码(只是为了测试目的而这样做)。

我究竟做错了什么?任何信息都会有所帮助。

这是我目前的代码:

for (var i = 0; i < msg.length; i++) {
    info = msg[i];
    console.log(info);
    geocoder.geocode( { 'address': msg[i]}, function(results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            var marker = new google.maps.Marker({
                map: map,
                animation: google.maps.Animation.DROP,
                icon: image,
                position: results[0].geometry.location
            })
            listenMarker(marker);
            markerBounds.extend(results[0].geometry.location);
            map.fitBounds(markerBounds);
        } else {
            alert("Geocode was not successful for the following reason: " + status);
        }
    });
}

function listenMarker (marker){
    google.maps.event.addListener(marker, 'click', function() {
    infoWindow.setContent(info);
    infoWindow.open(map, this);
});
4

1 回答 1

1

您还需要在地理编码器调用上使用函数闭包(未测试),看起来您的 listMarker 函数也可能有问题(如果您依赖全局,似乎缺少“信息”的定义的价值,这可能是你的问题):

function geocodeAddress(msg)
{
            geocoder.geocode( { 'address': msg}, function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
            var marker = new google.maps.Marker({
            map: map,
            animation: google.maps.Animation.DROP,
            icon: image,
            position: results[0].geometry.location
            })
                listenMarker(marker, msg);
                markerBounds.extend(results[0].geometry.location);
                map.fitBounds(markerBounds);
        } else {
            alert("Geocode was not successful for the following reason: " + status);
        }
    });
}

for (var i = 0; i < msg.length; i++) {
            info = msg[i];
            console.log(info);
            geocodeAddress(msg[i]);
}

function listenMarker (marker, info){
    google.maps.event.addListener(marker, 'click', function() {
    infoWindow.setContent(info);
    infoWindow.open(map, this);
});
于 2013-04-08T17:18:31.360 回答