<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Migrating the Overview Map to Flex 2.0 in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/migrating-the-overview-map-to-flex-2-0/m-p/758982#M16762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After searching in earnest for a post concerning updating the Overview Map to Flex 2.0 and finding none, I decided to post how I got it to work for me. Sorry if this has been posted previously.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is based on the Overview Map from the old code gallery: &lt;/SPAN&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=15873" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=15873&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Pretty simple actually. In the import statements at the beginning of the script change &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; import com.esri.ags.symbol.FillSymbol;
 import com.esri.ags.symbol.SimpleFillSymbol;
 import com.esri.ags.symbol.SimpleLineSymbol;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;To:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // import com.esri.ags.symbol.FillSymbol; (or delete this line)
 import com.esri.ags.symbols.SimpleFillSymbol;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // add an "s" to the end of ".symbol"
 import com.esri.ags.symbols.SimpleLineSymbol;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now search through the entire code and change everywhere where the data type is ":FillSymbol" change that to ":SimpleFillSymbol"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure you have your extent settings correct and off you go.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 08:10:52 GMT</pubDate>
    <dc:creator>MattWilliams</dc:creator>
    <dc:date>2021-12-12T08:10:52Z</dc:date>
    <item>
      <title>Migrating the Overview Map to Flex 2.0</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/migrating-the-overview-map-to-flex-2-0/m-p/758982#M16762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After searching in earnest for a post concerning updating the Overview Map to Flex 2.0 and finding none, I decided to post how I got it to work for me. Sorry if this has been posted previously.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is based on the Overview Map from the old code gallery: &lt;/SPAN&gt;&lt;A href="http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=15873" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.esri.com/arcgisserver/apis/flex/index.cfm?fa=codeGalleryDetails&amp;amp;scriptID=15873&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Pretty simple actually. In the import statements at the beginning of the script change &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; import com.esri.ags.symbol.FillSymbol;
 import com.esri.ags.symbol.SimpleFillSymbol;
 import com.esri.ags.symbol.SimpleLineSymbol;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;To:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // import com.esri.ags.symbol.FillSymbol; (or delete this line)
 import com.esri.ags.symbols.SimpleFillSymbol;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // add an "s" to the end of ".symbol"
 import com.esri.ags.symbols.SimpleLineSymbol;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now search through the entire code and change everywhere where the data type is ":FillSymbol" change that to ":SimpleFillSymbol"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure you have your extent settings correct and off you go.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:10:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/migrating-the-overview-map-to-flex-2-0/m-p/758982#M16762</guid>
      <dc:creator>MattWilliams</dc:creator>
      <dc:date>2021-12-12T08:10:52Z</dc:date>
    </item>
  </channel>
</rss>

