| Package | com.esri.aws.awx.map.layers |
| Interface | public interface IGroupLayer extends ILayer, flash.events.IEventDispatcher |
| Subinterfaces | IMap |
| Property | Defined by | ||
|---|---|---|---|
![]() | alpha : Number
The transparency value of the layer.
| ILayer | |
| editable : Boolean [read-only]
If true, the group layer is editable so all of the manipulation methods with throw an error.
| IGroupLayer | ||
![]() | icon : Class
The icon that represents this layer.
| ILayer | |
![]() | id : String
The layer identifier.
| ILayer | |
![]() | label : String
The label of the layer.
| ILayer | |
| layers : Array [read-only]
The layers in this group layer.
| IGroupLayer | ||
![]() | layerStyle : IStyle
The style of the layer.
| ILayer | |
![]() | map : IMap
The reference to the parent map container.
| ILayer | |
| numLayers : int [read-only]
The number of layers in the group.
| IGroupLayer | ||
![]() | style : IStyle
DEPRECATED
| ILayer | |
![]() | supportedProjections : Array
The array of supported projections for this groupLayer.
| ILayer | |
![]() | visible : Boolean
If true, the layer is visible.
| ILayer | |
| Method | Defined by | ||
|---|---|---|---|
|
Adds a layer to the group layer.
| IGroupLayer | ||
|
addLayerAt(layer:ILayer, index:int):void
Adds a layer at a specific index.
| IGroupLayer | ||
|
Gets a layer based on its identifier.
| IGroupLayer | ||
![]() |
getUIComponent():UIComponent
The layer's UIComponent.
| ILayer | |
|
moveLayerAbove(layer1ID:String, layer2ID:String):void
Moves the first layer above the the second layer in the z-order.
| IGroupLayer | ||
|
moveLayerBelow(layer1ID:String, layer2ID:String):void
Moves the first layer below the the second layer in the z-order.
| IGroupLayer | ||
|
moveLayerToBottom(layerID:String):void
Moves the layer to the bottom of the z-order.
| IGroupLayer | ||
|
moveLayerToTop(layerID:String):void
Moves the layer to the top of the z-order.
| IGroupLayer | ||
|
removeAllLayers():void
Removes all the layers.
| IGroupLayer | ||
|
removeLayer(layerID:String):void
Removes a layer.
| IGroupLayer | ||
|
swapLayers(layer1ID:String, layer2ID:String):void
Swaps the z-order of two layers.
| IGroupLayer | ||
| editable | property |
editable:Boolean [read-only]If true, the group layer is editable so all of the manipulation methods with throw an error.
Implementation public function get editable():Boolean
| layers | property |
layers:Array [read-only]The layers in this group layer.
Implementation public function get layers():Array
| numLayers | property |
numLayers:int [read-only]The number of layers in the group.
Implementation public function get numLayers():int
| addLayer | () | method |
public function addLayer(layer:ILayer):voidAdds a layer to the group layer.
Parameterslayer:ILayer — the layer to add.
|
| addLayerAt | () | method |
public function addLayerAt(layer:ILayer, index:int):voidAdds a layer at a specific index.
Parameterslayer:ILayer — the layer to add.
|
|
index:int — the index where to add the layer.
|
| getLayer | () | method |
public function getLayer(layerID:String):ILayerGets a layer based on its identifier.
ParameterslayerID:String — the layer identifier.
|
ILayer |
| moveLayerAbove | () | method |
public function moveLayerAbove(layer1ID:String, layer2ID:String):voidMoves the first layer above the the second layer in the z-order.
Parameterslayer1ID:String — the layer to move.
|
|
layer2ID:String — the layer to be moved above.
|
| moveLayerBelow | () | method |
public function moveLayerBelow(layer1ID:String, layer2ID:String):voidMoves the first layer below the the second layer in the z-order.
Parameterslayer1ID:String — the layer to move.
|
|
layer2ID:String — the layer to be moved below.
|
| moveLayerToBottom | () | method |
public function moveLayerToBottom(layerID:String):voidMoves the layer to the bottom of the z-order.
ParameterslayerID:String — the layer to move.
|
| moveLayerToTop | () | method |
public function moveLayerToTop(layerID:String):voidMoves the layer to the top of the z-order.
ParameterslayerID:String — the layer to move.
|
| removeAllLayers | () | method |
public function removeAllLayers():voidRemoves all the layers.
| removeLayer | () | method |
public function removeLayer(layerID:String):voidRemoves a layer.
ParameterslayerID:String — the layer to remove.
|
| swapLayers | () | method |
public function swapLayers(layer1ID:String, layer2ID:String):voidSwaps the z-order of two layers.
Parameterslayer1ID:String — the first layer to swap.
|
|
layer2ID:String — the second layer to swap.
|