如何使用Maps GWT API显示多个infowindows?

时间:2013-07-20 11:54:04

标签: java gwt google-maps-api-2

我写了以下方法:

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(来自商标)?

0 个答案:

没有答案