在V3中替换getInfowindow

时间:2013-02-11 10:20:45

标签: gwt google-maps-api-3

 Is there any alternate code for getting infowindow from maps v3. Previously i had v2 version code as 
`MapWidget map = new MapWidget();
InfoWindow info = map.getInfoWindow()
info.open(marker.getLatLng(),new InfoWindowContent("Test"));`

我无法在gwt-maps-3.8.0中找到getInfoWindow。请帮忙......

2 个答案:

答案 0 :(得分:0)

这是你在找什么?

InfoWindow.open(MapWidget mapWidget)

在给定的地图上打开此InfoWindow。

答案 1 :(得分:0)

最后我得到了..在Maps V2中,InfoWindow没有初始化。相反,我们从地图InfoWindow info = map.getInfoWindow();获取 在Map V3中,我们的语法为              InfoWindowOptions options = InfoWindowOptions.create(); options.setContent("Test); options.setPosition(LatLng.create(24.796708, 46.691895)); InfoWindow info = InfoWindow.create(options); info.open(map);

有关详情,请点击Here