| Package | com.esri.aws.awx.map.layers |
| Class | public class MapImageGroupLayer |
| Inheritance | MapImageGroupLayer com.esri.aws.awx.map.layers.BaseMapLayer |
| Implements | com.esri.aws.osgi.framework.IServiceListener, ILayerVisibility |
| Subclasses | ThematicGroupLayer |
See also
| Property | Defined by | ||
|---|---|---|---|
| dataSource : String
The map data source.
| MapImageGroupLayer | ||
| layerVisibilities : Array [write-only]
Write only property for setting the LayerVisibility if you know the layer names.
| MapImageGroupLayer | ||
| legendUrl : String [read-only]
The map legend URL.
| MapImageGroupLayer | ||
| mapImageFormat : String
The image format of the map.
| MapImageGroupLayer | ||
| mapLegend : MapLegend
If set, the map legend URL will be available in
legendUrl property. | MapImageGroupLayer | ||
| mapStyle : String
Style sheet used in the map.
| MapImageGroupLayer | ||
| returnLayerVisibilities : Boolean
If true, the LayerVisibilities will be requested with the map request.
| MapImageGroupLayer | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new MapImageGroupLayer
| MapImageGroupLayer | ||
|
getLayerVisibilities(responder:IResponder):void
Getting layer visibilities can be an asynchronous process, so it requires a responder.
| MapImageGroupLayer | ||
| dataSource | property |
dataSource:String [read-write]The map data source. The name of the Map Image data source. Required. See Map Image data sources for valid values (use the name in parenthesis.)
This property can be used as the source for data binding.
Implementation public function get dataSource():String
public function set dataSource(value:String):void
| layerVisibilities | property |
layerVisibilities:Array [write-only]Write only property for setting the LayerVisibility if you know the layer names.
Implementation public function set layerVisibilities(value:Array):void
| legendUrl | property |
legendUrl:String [read-only]The map legend URL. Returned if mapLegend is true.
This property can be used as the source for data binding.
Implementation public function get legendUrl():String
| mapImageFormat | property |
mapImageFormat:String [read-write]The image format of the map. Valid values are "jpg", "gif", "png", "png8", "svg", or "swf".
The default value is png8.
This property can be used as the source for data binding.
Implementation public function get mapImageFormat():String
public function set mapImageFormat(value:String):void
| mapLegend | property |
mapLegend:MapLegend [read-write]
If set, the map legend URL will be available in legendUrl property.
public function get mapLegend():MapLegend
public function set mapLegend(value:MapLegend):void
| mapStyle | property |
mapStyle:String [read-write]Style sheet used in the map.
Style sheets are specific to a data source. Default value is "neutral". Valid values are "classicEuropean", "coolSteel", "grayScale", "neutral", and "tangerine". You can set a style for the following data sources: ArcWeb:AND.Roads.World uses "neutral", "grayScale", or "tangerine"; ArcWeb:TA.Streets.EU uses "neutral", "grayScale", "tangerine", or "classicEuropean"; ArcWeb:TA.Streets.US uses "neutral", "coolSteel", "grayScale", "tangerine", or "classicEuropean"; and ArcWeb:TA.Streets.NA uses "neutral", "grayScale", or "tangerine".
This property can be used as the source for data binding.
Implementation public function get mapStyle():String
public function set mapStyle(value:String):void
| returnLayerVisibilities | property |
returnLayerVisibilities:Boolean [read-write]
If true, the LayerVisibilities will be requested with the map request.
If set to false, the getLayerVisibilities method
will return an empty ArrayCollection.
The default value is false.
public function get returnLayerVisibilities():Boolean
public function set returnLayerVisibilities(value:Boolean):void
| MapImageGroupLayer | () | constructor |
public function MapImageGroupLayer()Creates a new MapImageGroupLayer
| getLayerVisibilities | () | method |
public function getLayerVisibilities(responder:IResponder):voidGetting layer visibilities can be an asynchronous process, so it requires a responder. An ArrayCollection of LayerVisibility objects will be returned. Changes to the returned ArrayCollection can then be detected by listening to the ArrayCollection's CollectionEvent.COLLECTION_CHANGE event.
Parametersresponder:IResponder — the responder to be called with the LayerVisibilities.
|