0

我正在使用 Google map API V3 来绘制路线。我有“LatLng”数组,我正在循环这个数组以在地图上绘制路线。我还需要为每个地址添加标记和信息窗口。我在地图上得到标记,但信息窗口不起作用,这是我的代码。

for(i=0;i<s[0].length;i++)
{
marker[count] = new google.maps.Marker({
                    position: s[0][i]["location"],
                    map: map
                });



marker[count].info = new google.maps.InfoWindow({
          content: '<b>Speed:</b> '
        });

 google.maps.event.addListener(marker[count], 'click', function() 
  {
     marker[count].info.open(map, marker[count]);
  });

count++;

}
4

1 回答 1

1

代替

marker[count].info.open(map, marker[count]);

您可以

this.info.open(map, this);

这是有关使用 infowindow 的多个制造商的教程。

于 2013-10-11T07:03:13.770 回答