Hey, I received a good answer from a post yesterday, so I'm hoping to get equally awesome help today. I am brand new to GIS concepts and have really only worked with Flex by hand-writing some MXML and AS files and compiling them myself without Flash Builder. We are launching two mapping sites here: one is using the .NET API and the other is using Flex. I am working with a GIS tech to get the Flex one started; the .NET site is being done by someone else. We have added one of our own map services to the site and we're seeing our county. Awesome. We just don't know where to go from here. The links below are for sites that are not publicly linked yet.Our Flex site:http://208.11.222.208/gis_temp/flexviewer/The .NET site:http://gis1.co.frederick.va.us/frederickcountyva/Default.aspxSee how the map seems to show different layers on the .NET site as you zoom in? How do we accomplish this on the Flex site? Also, where should we look or what should we read for our next step? I'm certainly not asking for anyone to do my job for me, but we really would love some pointers for the right direction.I'll post the code for our config.xml if it's of any help.<?xml version="1.0" ?>
<!--
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 ESRI
//
// All rights reserved under the copyright laws of the United States.
// You may freely redistribute and use this software, with or
// without modification, provided you include the original copyright
// and use restrictions. See use restrictions in the file:
// <install location>/License.txt
//
////////////////////////////////////////////////////////////////////////////////
-->
<configuration>
<httpproxy enabled="false">proxy.php</httpproxy>
<title>Frederick County General Mapping</title>
<subtitle></subtitle>
<logo>assets/images/fredc-assembled.png</logo>
<stylesheet>blackgold.swf</stylesheet>
<!-- UI elements -->
<widget right="20" top="55" config="widgets/MapSwitcher/MapSwitcherWidget.xml" url="widgets/MapSwitcher/MapSwitcherWidget.swf"/>
<widget left="0" top="0" config="widgets/HeaderController/HeaderController.xml" url="widgets/HeaderController/HeaderControllerWidget.swf"/>
<widget right="1" bottom="1" config="widgets/OverviewMap/OverviewMapWidget.xml" url="widgets/OverviewMap/OverviewMapWidget.swf"/>
<map initialextent="11428023.5620323 7044712.37840232 11661407.1864131 7229241.03074607" fullextent="11282090.75 6883424.125 11723944.25 7320825.375">
<basemaps>
<mapservice label="Frederick County" type="dynamic" visible="true" alpha="1"
url="http://gis1.co.frederick.va.us/ArcGIS/rest/services/Publicsite/MapServer" />
</basemaps>
<operationallayers>
</operationallayers>
</map>
<!-- widgets organized into widget containers that manage close/open etc -->
<!-- supported layout property options: horizontal(default)|float|vertical|fix-->
<widgetcontainer layout="float">
<widget label="Bookmarks" x="400" y="60" icon="assets/images/i_bookmark.png"
config="widgets/Bookmark/BookmarkWidget.xml"
url="widgets/Bookmark/BookmarkWidget.swf"/>
<widget label="Find an address" x="70" y="94" preload="open" icon="assets/images/i_target.png"
config="widgets/Locate/LocateWidget_US.xml"
url="widgets/Locate/LocateWidget.swf"/>
<widget label="Louisville Police" x="590" y="300" icon="assets/images/i_police.png"
config="widgets/Query/QueryWidget_PublicSafety_Louisville.xml"
url="widgets/Query/QueryWidget.swf"/>
<widget label="Search"
icon="assets/images/i_search.png"
config="widgets/Search/SearchWidget_Louisville.xml"
url="widgets/Search/SearchWidget.swf"/>
<widget label="Earthquakes (GeoRSS)"
icon="assets/images/i_rss.png"
config="widgets/GeoRSS/GeoRSSWidget.xml"
url="widgets/GeoRSS/GeoRSSWidget.swf"/>
<widget label="Draw"
icon="assets/images/i_draw2.png"
config="widgets/Draw/DrawWidget.xml"
url="widgets/Draw/DrawWidget.swf"/>
<widget label="Print"
icon="assets/images/i_print.png"
config="widgets/Print/PrintWidget.xml"
url="widgets/Print/PrintWidget.swf"/>
<!--
<widget label="My first widget"
icon="assets/images/i_widget.png"
config="widgets/Samples/HelloWorld/HelloWorldWidget.xml"
url="widgets/Samples/HelloWorld/HelloWorldWidget.swf"/>
-->
</widgetcontainer>
</configuration>
Thanks!Jeremy