<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:esri="http://www.esri.com/2008/ags"> <fx:Declarations> <!-- Place non-visual elements (e.g., services, value objects) here --> </fx:Declarations> <mx:VDividedBox width="100%" height="100%"> <s:VGroup width="100%"> <mx:DataGrid id="myGrid" width="100%" height="100%" /> </s:VGroup> <s:VGroup width="100%"> <esri:Map id="myMap" x="0" y="0"> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"/> </esri:Map> </s:VGroup> </mx:VDividedBox> </s:Application>