0

当我插入 x 的值而不是使用 for 循环时,此代码有效。但是当我使用 for 循环时,信息窗口会在屏幕左侧扭曲显示。

到底是怎么回事!

for (var x = 0; x < data.page_size; x++) {

var position = new google.maps.LatLng(
  data.events.event[x]['latitude'],
  data.events.event[x]['longitude']);

marker.push(
  new google.maps.Marker({
    position: position, 
    map: map, 
    icon: image}
));

 google.maps.event.addListener(marker[x], 'click', function() {
  infowindow.setContent(content[x]);
  infowindow.open(map, marker[x]);
});

}

4

2 回答 2

1

在这种情况下,您必须使用闭包。像这样:

(function(m,c){
    google.maps.event.addListener(m, 'click', function() {
        infowindow.setContent(c);
        infowindow.open(map, m);
    });
})(marker[x],content[x])
于 2013-09-27T14:19:05.763 回答
0

解决这个问题的一种经济方法是让标记知道它自己的索引,代价是每个标记只需要一个 Number 属性,并避免需要形成一组包含content[x].

for (var x = 0; x < data.page_size; x++) {
    ...
    marker[x].x = x;//make the marker aware of its own index
    google.maps.event.addListener(marker[x], 'click', function() {
        infowindow.setContent(content[this.x]);
        infowindow.open(map, this);
    });
}

如果marker数组和content数组保持静态,或者被兼容管理,那么this.x将可靠地为每个标记提取正确的内容。

于 2013-09-28T08:42:36.870 回答