I am using the Silverlight sdk for Bing Maps. I have my map, I have my PushPins all mapped out. Now I want to disable the user from zooming out so far they see the whole wor
public class MyMapMode : Microsoft.Maps.MapControl.Core.MercatorMode
{
public Range MapZoomRange = new Range(1.0, 10.0);
protected override Range GetZoomRange(Location center)
{
return this.MapZoomRange;
}
}