Using gwt-maps-3.8.0 lib GWT-Maps and i am not able to trigger a resize.
-> tried using \"import com.google.gwt.user.client.Event;\" -> Event.trig
That's the best I found so far:
private final native void resizeMap(GoogleMap map) /*-{
$wnd.google.maps.event.trigger(map, 'resize');
}-*/;
If you don't want to use your own nativ JS code you could just use the mapWidget.getMap().triggerResize()
method provided by the gwt-maps-3.8.0 library