<?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 Re: Overview Map Extent in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580361#M16568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The documentation describes the extent which is displayed in the Overview Map as below:&lt;BR /&gt;&lt;BR /&gt;"Displays the map extent zoomed out three times the main map display (until the maximum extent is reached)."&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I don't have a true base map in my application. The service used by the Overview map has a upper scale threshold of 1:100,000. However once my map goes beyond a scale of 1:8100 I no longer get anything in my overview. I got a value of 8100 by making my map perfectly square. On a more rectangular map it disappears at around 1:6000.&lt;BR /&gt;&lt;BR /&gt;The documentation would suggest that the overview should be showing the map at 1:24300 (8100 x 3) in which case the I should still see the map service. &lt;BR /&gt;&lt;BR /&gt;If the documentation meant 3 zoom levels then it would still be visible, showing 1:64800 (8100 x 2 x 2 x 2).&lt;BR /&gt;&lt;BR /&gt;Am I misreading the documentation? Is the documentation just wrong? Or is something odd with my application/map service?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the code it looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;private function updateOverviewExtentFromMap():void &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewMap.extent = map.extent.expand(3); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewGraphic.geometry = map.visibleArea; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //hide overview box if larger than overview map &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewGraphic.visible = overviewMap.extent.contains(overviewGraphic.geometry); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;where the expand function is described as:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Returns a new expanded extent. For example, a value of 1.5 will create an extent that is 50% bigger."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, a factor of 3 would be 200% larger.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jul 2013 12:10:05 GMT</pubDate>
    <dc:creator>GISDev1</dc:creator>
    <dc:date>2013-07-24T12:10:05Z</dc:date>
    <item>
      <title>Overview Map Extent</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580360#M16567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The documentation describes the extent which is displayed in the Overview Map as below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Displays the map extent zoomed out three times the main map display (until the maximum extent is reached)."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't have a true base map in my application. The service used by the Overview map has a upper scale threshold of 1:100,000. However once my map goes beyond a scale of 1:8100 I no longer get anything in my overview. I got a value of 8100 by making my map perfectly square. On a more rectangular map it disappears at around 1:6000.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The documentation would suggest that the overview should be showing the map at 1:24300 (8100 x 3) in which case the I should still see the map service. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the documentation meant 3 zoom levels then it would still be visible, showing 1:64800 (8100 x 2 x 2 x 2).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Am I misreading the documentation? Is the documentation just wrong? Or is something odd with my application/map service?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 07:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580360#M16567</guid>
      <dc:creator>PhilipThompson</dc:creator>
      <dc:date>2013-07-24T07:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Overview Map Extent</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580361#M16568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The documentation describes the extent which is displayed in the Overview Map as below:&lt;BR /&gt;&lt;BR /&gt;"Displays the map extent zoomed out three times the main map display (until the maximum extent is reached)."&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I don't have a true base map in my application. The service used by the Overview map has a upper scale threshold of 1:100,000. However once my map goes beyond a scale of 1:8100 I no longer get anything in my overview. I got a value of 8100 by making my map perfectly square. On a more rectangular map it disappears at around 1:6000.&lt;BR /&gt;&lt;BR /&gt;The documentation would suggest that the overview should be showing the map at 1:24300 (8100 x 3) in which case the I should still see the map service. &lt;BR /&gt;&lt;BR /&gt;If the documentation meant 3 zoom levels then it would still be visible, showing 1:64800 (8100 x 2 x 2 x 2).&lt;BR /&gt;&lt;BR /&gt;Am I misreading the documentation? Is the documentation just wrong? Or is something odd with my application/map service?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the code it looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;private function updateOverviewExtentFromMap():void &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewMap.extent = map.extent.expand(3); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewGraphic.geometry = map.visibleArea; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //hide overview box if larger than overview map &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overviewGraphic.visible = overviewMap.extent.contains(overviewGraphic.geometry); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;where the expand function is described as:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Returns a new expanded extent. For example, a value of 1.5 will create an extent that is 50% bigger."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, a factor of 3 would be 200% larger.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 12:10:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580361#M16568</guid>
      <dc:creator>GISDev1</dc:creator>
      <dc:date>2013-07-24T12:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Overview Map Extent</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580362#M16569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, well you can't get a better answer than the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure why I didn't look there myself. Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 14:32:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/overview-map-extent/m-p/580362#M16569</guid>
      <dc:creator>PhilipThompson</dc:creator>
      <dc:date>2013-07-24T14:32:41Z</dc:date>
    </item>
  </channel>
</rss>

