Package | com.google.maps.interfaces |
Interface | public interface IGroundOverlay extends IOverlay, IWrappableEventDispatcher, flash.events.IEventDispatcher, IWrappable |
Implementors | GroundOverlay |
Method | Defined by | ||
---|---|---|---|
![]() |
getBaseEventDispatcher():Object
Retrieves the base event dispatcher object that allows access to event
dispatching capability for cross-domain objects.
| IWrappableEventDispatcher | |
![]() |
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 | ||
![]() |
positionOverlay(zoomChanged:Boolean):void
Reposition the overlay on the screen.
| IOverlay | |
setOptions(options:GroundOverlayOptions):void
Updates the ground overlay options.
| IGroundOverlay |
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.
ReturnsGroundOverlayOptions —
Options used by the ground overlay.
|
See also
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.
options:GroundOverlayOptions — New full or partial set of options for the ground overlay.
|
var options:GroundOverlayOptions = new GroundOverlayOptions( { strokeStyle: { color: 0x000080 }} ); myGroundOverlay.setOptions(options);