I'm quite new to javascript so maybe the solution is obvious but when I include a leaflet map on a page, the default [+/-] controlling the zoom of the map is always displayed on top of any other element of the page. Especially I have a menu on the left of the map which is overlaping the map when opened, and the menu item are under this button. Is there any way to solve that ?
var zoomControl = L.control.zoom({ position: "bottomright" }).addTo(map);
-Bryan