| Package | com.esri.aws.awx.map.layers |
| Interface | public interface ILayerVisibility |
| Implementors | MapImageGroupLayer, VectorGroupLayer |
See also
| Property | Defined by | ||
|---|---|---|---|
| layerVisibilities : Array [write-only]
Write only property for setting the LayerVisibility if you know the layer names.
| ILayerVisibility | ||
| Method | Defined by | ||
|---|---|---|---|
|
getLayerVisibilities(responder:IResponder):void
Getting layer visibilities can be an asynchronous process, so it requires a responder.
| ILayerVisibility | ||
| 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
See also
<awx:layerVisibilities>
<awx:LayerVisibility name="U.S. Highways" visible="false"/>
<awx:LayerVisibility name="U.S. Counties" visible="false"/>
</awx:layerVisibilities>
| 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.
|
See also