Is there a bug with Map.ZoomIn? Currently trying to simply use Map.ZoomIn, but regardless of what number I pass it, it doesn’t work. Map.ZoomOut works fine. My code is simply:
if (x > 0)
{
Map.ZoomIn(x); //doesn't work
}
else
{
x = Math.Abs(x);
Map.ZoomOut(x); //works
}
Map.Refresh();
Thanks!