Packagecom.google.maps.interfaces
Interfacepublic interface IGroundOverlay extends IOverlay, IWrappableEventDispatcher, flash.events.IEventDispatcher, IWrappable
ImplementorsGroundOverlay

IGroundOverlay is the interface implemented by ground overlay objects. Ground overlays are images laid out over the map content whose corners are located with latitude/longitude pairs.



Public Properties
 PropertyDefined by
 Inheritedforeground : DisplayObject
Display object that represents the overlay's content.
IOverlay
 InheritedinterfaceChain : Array
List of interfaces for wrapping this object.
IWrappable
 Inheritedpane : IPane
Pane this overlay resides on (null if the overlay is not added to the map).
IOverlay
 Inheritedshadow : DisplayObject
Display object that represents the overlay's shadow (null if the overlay never has a shadow).
IOverlay
 Inheritedvisible : Boolean
Visibility of the overlay.
IOverlay
 Inheritedwrapper : Object
Instance of the cross-domain wrapper for this object.
IWrappable
Public Methods
 MethodDefined by
 Inherited
Retrieves the base event dispatcher object that allows access to event dispatching capability for cross-domain objects.
IWrappableEventDispatcher
 Inherited
Retrieves the default pane that this overlay should be placed on if none is explicitly specified (when the overlay is added through the IMap.addOverlay() call).
IOverlay
  
Retrieves the full set of options used by the ground overlay.
IGroundOverlay
 Inherited
positionOverlay(zoomChanged:Boolean):void
Reposition the overlay on the screen.
IOverlay
  
Updates the ground overlay options.
IGroundOverlay
Method detail
getOptions()method
public function getOptions():GroundOverlayOptions

Retrieves the full set of options used by the ground overlay. Use the setOptions method to modify the options on the ground overlay.

Returns
GroundOverlayOptions — Options used by the ground overlay.

See also

GroundOverlay.setOptions()
setOptions()method 
public function setOptions(options:GroundOverlayOptions):void

Updates the ground overlay options. The options parameter may specify a complete or partial set of ground overlay options. If a partial set of options is specified, it will supplement the existing marker options, overriding only the values that were set explicitly and leaving the rest unchanged.

Parameters
options:GroundOverlayOptions — New full or partial set of options for the ground overlay.

Example
Modify the ground overlay's stroke colour, leaving the rest of its options unchanged.
   var options:GroundOverlayOptions =
       new GroundOverlayOptions( { strokeStyle: { color: 0x000080 }} );
   myGroundOverlay.setOptions(options);