Is it true that, one cannot specify a map layer for the attribute Url of ArcGISTiledMapServiceLayer (or Dynamice layer) of an OverviewMap ?
For instance, the sample has something like below:
<esri:OverviewMap x:Name="MyOverviewMap"
Margin="8,0,0,8"
MaximumExtent="-41381301,-19971868,41381301,19971868"
Map="{Binding ElementName=MyMap}">
<esri:OverviewMap.Layer>
<esri:ArcGISTiledMapServiceLayer ID="StreetLayer"
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/>
</esri:OverviewMap.Layer>
</esri:OverviewMap>
I want to update the Url to include the layer id (.../MapServer/30) and it failed. Wonder if this is not supported? Our map is changed to different layers when navigating and I want the overview map to reflect the new layer when the main map is changed. Is there a way to do that?
Thanks!