<esri:OverviewMap x:Name="MyOverviewMap" Width="130" Height="130" Map="{Binding ElementName=MyMap}" IsStatic="True" MaximumExtent="3005535,596476,3070530,644436" > <esri:OverviewMap.Layer> <esri:ArcGISTiledMapServiceLayer ID="OverViewMap" Url="<ServerAddress>"/> </esri:OverviewMap.Layer> </esri:OverviewMap>
public OverviewMap(){
InitializeComponent();
MyMap.Layers.LayersInitialized += SetIsStatic;
}
void SetIsStatic(object sender, System.EventArgs args)
{
Dispatcher.BeginInvoke(() => {
MyOverviewMap.IsStatic = false;
MyOverviewMap.IsStatic = true;
});
}
<esri:ArcGISTiledMapServiceLayer ID="StreetLayer" Initialized="SetIsStatic" Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/>