I am trying to figure out how to limit how far in the user can zoom. I believe it is something to do with the map resolution, is this correct?
public MainPage()
{
InitializeComponent();
MyMap.Layers.LayersInitialized += ChangeMapResolution;
}
void ChangeMapResolution(object sender, System.EventArgs args)
{
MyMap.MinimumResolution *= 2;
}