Placing a label on the map
This examples shows how to place a label on the map. Actually, you can place any UIComponent. But make sure to set the width and height of the component :-) <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:awx="http://www.arcwebservices.com/2007/awx" xmlns:test="com.esri.test.*" layout="absolute" > <test:LabelStyle id="labelStyle"/> <awx:Framework apiKey="19640523"/> <awx:Map createDefaultLayers="false"> <awx:MarkerLayer> <test:LabelMarker geoX="45" geoY="45" style="{labelStyle}"/> </awx:MarkerLayer> </awx:Map> </mx:Application> The LabelStyle places the overlay on the map in pixel coordinates. package com.esri.test { import com.esri.aws.awx.geom.PathType; import com.esri.aws.awx.map.layer...