List of usage examples for com.google.gwt.maps.client.overlay Polygon setVisible
public void setVisible(boolean visible)
From source file:org.onebusaway.webapp.gwt.oba_library.control.TimedOverlayManager.java
License:Apache License
public void clear() { for (Polygon marker : _overlays) { marker.setVisible(false); _mapOverlayManager.removeOverlay(marker); }/* w w w .j a v a2 s . c o m*/ _overlays.clear(); }
From source file:org.onebusaway.webapp.gwt.oba_library.control.TimedOverlayManager.java
License:Apache License
public void setVisible(boolean visible) { for (Polygon marker : _overlays) marker.setVisible(visible); }