public void zoomToMarkers() { try { if (markerLayer != null) { Bounds bbox = markerLayer.getDataExtent(); if (bbox != null) { int z = map.getZoomForExtent(bbox, false); map.zoomToExtent(bbox); map.zoomTo(z); } } } catch (Exception e) { if (!GWT.isProdMode()) { GWT.log("", e); } } }
public void zoomToMarkers(Markers markers) { map.zoomToExtent(markers.getDataExtent()); }