Reputation: 75
How can I adjust the obfuscation of an Azure indoor map? As per tutorial (https://learn.microsoft.com/en-us/azure/azure-maps/how-to-use-indoor-module), the zoom level on load HTML is defined as:
new atlas.Map("map-id", {....
... zoom: 19,
});
The indoor map will only show on zoomlevel 19 or a higher value. If I scroll (zoom out) of the map or change the base zoomlevel value in the HTML, the building details are immediately no longer visible, only an outline remains.
Thanks for the help!
Upvotes: 0
Views: 179
Reputation: 17964
Currently it only shows details at zoom levels 19+. I don't believe their is an option to change this currently, but it is being looked into.
Curious about the need here. Does your building cover a very large area?
Do you want to be able to zoom in past level 22? Is so add maxZoom: 24
to the map options when loading.
Upvotes: 1