Uses of Class
com.mapitz.gwt.googleMaps.client.GOverlay

Uses of GOverlay in com.mapitz.gwt.googleMaps.client
 

Subclasses of GOverlay in com.mapitz.gwt.googleMaps.client
 class GInfoWindow
          An information panel which displays over the map.
 class GMarker
          A GMarker marks a position on the map.
 class GPolyline
          This is a map overlay that draws a polyline on the map, using the vector drawing facilities of the browser if they are available, or an image overlay from Google servers otherwise.
 

Methods in com.mapitz.gwt.googleMaps.client that return GOverlay
 GOverlay GOverlay.Copy()
          copy() GOverlay Returns an uninitialized copy of itself that can be added to the map.
 

Methods in com.mapitz.gwt.googleMaps.client with parameters of type GOverlay
 void GMap2.addOverlay(GOverlay overlay)
          addOverlay(overlay) none Adds an overlay to the map and fires the addoverlay event.
 void GMap2EventManager.onAddOverlay(GMap2 map, GOverlay overlay)
           
 void GMap2EventListener.onAddOverlay(GMap2 map, GOverlay overlay)
          addoverlay overlay This event is fired when a single overlay is added to the map by the method addOverlay().
 void GMap2EventManager.onClick(GMap2 map, GOverlay overlay, GLatLng point)
           
 void GMap2EventListener.onClick(GMap2 map, GOverlay overlay, GLatLng point)
          click overlay, point This event is fired when the map is clicked with the mouse.
 void GMap2EventManager.onRemoveOverlay(GMap2 map, GOverlay overlay)
           
 void GMap2EventListener.onRemoveOverlay(GMap2 map, GOverlay overlay)
          removeoverlay overlay This event is fired when a single overlay is removed by the method removeOverlay().
 void GMap2.removeOverlay(GOverlay overlay)
          removeOverlay(overlay) none Removes the overlay from the map.