Is there a method to zoom out of a map? Like the oposite of:
Map.Zoom(3);
Changing 3 to -3 does not work:
Map.Zoom(-3); //No exception, it wont work like this
I'm developing in visual studio with C# (WPF)
Thank you
Like the documentation says:
Factor=0.5 zooms out to half the scale. Factor=2 zooms in to twice the scale.
Therefore, you probably want to do this:
Map.Zoom(1.0 / 3.0);