我写了以下方法:
public static void setMarkOnMap(final MapWidget map, String place,
final String content) {
Geocoder geocoder = new Geocoder();
geocoder.getLatLng(place, new LatLngCallback() {
@Override
public void onSuccess(LatLng point) {
Marker marker = new Marker(point);
map.addOverlay(marker);
map.getInfoWindow().open(marker, new InfoWindowContent(content));
}
@Override
public void onFailure() {}
});
}
我打了两次电话,但在地图上只显示了一个InfoWindow。
有没有办法使用Google Maps API for GWT显示多个infowindow(来自商标)?