Package | com.google.maps.interfaces |
Interface | public interface IPaneManager extends IWrappable |
Property | Defined by | ||
---|---|---|---|
![]() | interfaceChain : Array
List of interfaces for wrapping this object.
| IWrappable | |
map : IMap
[read-only]
Reference to the map.
| IPaneManager | ||
paneCount : int [read-only]
Total number of panes available.
| IPaneManager | ||
![]() | wrapper : Object
Instance of the cross-domain wrapper for this object.
| IWrappable |
Method | Defined by | ||
---|---|---|---|
clearOverlays():void
Removes all overlays registered on all panes.
| IPaneManager | ||
containsPane(pane:IPane):Boolean
Checks whether the pane manager contains the specified pane.
| IPaneManager | ||
createPane(index:int = -1):IPane
Creates a new pane and adds it at the specified position.
| IPaneManager | ||
Retrieves the pane by its relative position.
| IPaneManager | ||
getPaneById(paneId:int):IPane
Retrieves the pane by the pane's id.
| IPaneManager | ||
getPaneIndex(pane:IPane):int
Retrieves the depth index of the pane.
| IPaneManager | ||
placePaneAt(pane:IPane, index:int):void
Positions the pane at the specified depth.
| IPaneManager | ||
removeAllPanes():void
Remove all panes.
| IPaneManager | ||
removePane(pane:IPane):void
Removes the pane.
| IPaneManager |
map | property |
paneCount | property |
paneCount:int
[read-only]Total number of panes available.
Implementation public function get paneCount():int
clearOverlays | () | method |
public function clearOverlays():void
Removes all overlays registered on all panes.
containsPane | () | method |
public function containsPane(pane:IPane):Boolean
Checks whether the pane manager contains the specified pane.
Parameterspane:IPane |
Boolean — Boolean indicating whether the pane is added to the pane manager.
|
createPane | () | method |
public function createPane(index:int = -1):IPane
Creates a new pane and adds it at the specified position.
Parametersindex:int (default = -1 ) — Position of the new pane in the pane stack (if not specified,
the pane is added just below the infowindow pane).
|
IPane —
Reference to the newly created pane.
|
getPaneAt | () | method |
public function getPaneAt(index:int):IPane
Retrieves the pane by its relative position.
Parametersindex:int — Depth index of the pane.
|
IPane —
Pane that corresponds to the position.
|
getPaneById | () | method |
public function getPaneById(paneId:int):IPane
Retrieves the pane by the pane's id.
ParameterspaneId:int — Pane's id.
|
IPane —
Pane with the specified id.
|
getPaneIndex | () | method |
public function getPaneIndex(pane:IPane):int
Retrieves the depth index of the pane.
Parameterspane:IPane — Pane whose index needs to be determined.
|
int — Depth index of the specified pane or (-1) if the pane
is not registered with the pane manager.
|
placePaneAt | () | method |
public function placePaneAt(pane:IPane, index:int):void
Positions the pane at the specified depth. Changing the pane's index allows rearranging the depths of panes in relation to each other.
Parameterspane:IPane — Pane whose placement will be changed.
|
|
index:int — Depth index of the pane.
|
removeAllPanes | () | method |
public function removeAllPanes():void
Remove all panes.
removePane | () | method |
public function removePane(pane:IPane):void
Removes the pane.
Parameterspane:IPane — Pane to remove.
|