Packagecom.esri.aws.awx.map.layers
Interfacepublic interface ILayer extends flash.events.IEventDispatcher
SubinterfacesIGroupLayer, IStaticLayer
ImplementorsMapImageGroupLayer, VectorGroupLayer

A layer is a collection of the same type of features that need to be manipulated as one entity on a map. These features can be of raster or vector type. A map is a collection of layers stacked up together.



Public Properties
 PropertyDefined by
  alpha : Number
The transparency value of the layer.
ILayer
  icon : Class
The icon that represents this layer.
ILayer
  id : String
The layer identifier.
ILayer
  label : String
The label of the layer.
ILayer
  layerStyle : IStyle
The style of the layer.
ILayer
  map : IMap
[read-only] The reference to the parent map container.
ILayer
  style : IStyle
DEPRECATED
ILayer
  supportedProjections : Array
[read-only] The array of supported projections for this groupLayer.
ILayer
  visible : Boolean
If true, the layer is visible.
ILayer
Public Methods
 MethodDefined by
  
getUIComponent():UIComponent
The layer's UIComponent.
ILayer
Property detail
alphaproperty
alpha:Number  [read-write]

The transparency value of the layer. Value should be between 0 and 1.

Implementation
    public function get alpha():Number
    public function set alpha(value:Number):void
iconproperty 
icon:Class  [read-write]

The icon that represents this layer.

Implementation
    public function get icon():Class
    public function set icon(value:Class):void
idproperty 
id:String  [read-write]

The layer identifier.

Implementation
    public function get id():String
    public function set id(value:String):void
labelproperty 
label:String  [read-write]

The label of the layer.

Implementation
    public function get label():String
    public function set label(value:String):void
layerStyleproperty 
layerStyle:IStyle  [read-write]

The style of the layer.

Implementation
    public function get layerStyle():IStyle
    public function set layerStyle(value:IStyle):void

See also

com.esri.aws.awx.map.layers.overlays.style.IStyle
mapproperty 
map:IMap  [read-only]

The reference to the parent map container.

Implementation
    public function get map():IMap
styleproperty 
style:IStyle  [read-write]

DEPRECATED

Implementation
    public function get style():IStyle
    public function set style(value:IStyle):void

See also

supportedProjectionsproperty 
supportedProjections:Array  [read-only]

The array of supported projections for this groupLayer.

Implementation
    public function get supportedProjections():Array
visibleproperty 
visible:Boolean  [read-write]

If true, the layer is visible.

Implementation
    public function get visible():Boolean
    public function set visible(value:Boolean):void
Method detail
getUIComponent()method
public function getUIComponent():UIComponent

The layer's UIComponent. Typically this will be itself.

Returns
UIComponent