I got an Azure Map and I have implemented a custom "change style" button that when pressed calls map.setStyle(). When I call this function using 'satellite' the switch is very quick. Like this:
map.setStyle({ 'style': 'satellite' });
But when I change the style "back" to 'road' the switch is super slow. Like this:
map.setStyle({ 'style': 'road' });
Am I doing something wrong?