leaflet
leaflet copied to clipboard
The +/- zoom feature overlaps other windows
Hi, Thanks for the great leaflet package. I noticed the that the +/- zoom feature shows upfront of other windows on the screen. Please find the image attached.
I believe there must be some options to turn this off, but I was not able to find it in the documentation. Please let me know how I can hide the +/- upon opening other windows on top of leaflet map.
Thanks.
A possible workaround is to set the z-index to 0 for the .leaflet-top
class at your custom.css file.
.leaflet-top {
z-index: 0;
}