How do i remove bottom area of azure Map. pls refer
to the attached screen.
How do i remove bottom area of azure Map. pls refer
to the attached screen.
@PahariAnupam-4777 Welcome to Microsoft Q&A forum!
To remove the specified area and load the map in full screen, you need to add/specify the height of the map to 100%.
<style>
html, body {
margin: 0;
}
#myMap {
height: 100vh;
width: 100vw;
}
</style>
Please see below screenshots to understand more.
Before:


After:


Hope this helps. Do let us know if you have any further queries.
If an answer is helpful, please "Accept answer" or "Up-Vote" for the same which might be beneficial to other community members reading this thread.
How do I color maps layers like the attached image
Custom map styles are not currently supported. But if you have a couple minor changes you can do something like this: https://stackoverflow.com/questions/64232955/azure-maps-removing-country-borders-from-map
Here is a tool to inspect the underlying map: https://azuremapscodesamples.azurewebsites.net/?search=inspect
4 people are following this question.