The documentation describes the extent which is displayed in the Overview Map as below:"Displays the map extent zoomed out three times the main map display (until the maximum extent is reached)."http://resources.arcgis.com/en/help/flex-viewer/concepts/index.html#/Overview_Map_widget/01m30000003r000000/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.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. If the documentation meant 3 zoom levels then it would still be visible, showing 1:64800 (8100 x 2 x 2 x 2).Am I misreading the documentation? Is the documentation just wrong? Or is something odd with my application/map service?
private function updateOverviewExtentFromMap():void { overviewMap.extent = map.extent.expand(3); overviewGraphic.geometry = map.visibleArea; //hide overview box if larger than overview map overviewGraphic.visible = overviewMap.extent.contains(overviewGraphic.geometry); }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.