angular-ui / ui-leaflet

AngularJS directive to embed an interact with maps managed by Leaflet library
http://angular-ui.github.io/ui-leaflet
Other
315 stars 137 forks source link

leaflet map getting over mdDialog #319

Open decko opened 7 years ago

decko commented 7 years ago

When I open a mdDialog, the leaflet map is getting over the dialog in the window, instead of turning it into the background: captura de tela de 2016-12-11 19-13-30

elesdoar commented 7 years ago

Please check CSS styles on the map...

decko commented 7 years ago

There is no CSS for the map, only the ones from leaflet.css and ui-leaflet(if this one uses any).

elesdoar commented 7 years ago

Please add a example in JSFiddle or Plunk.

Thanks

MojioMS commented 6 years ago

Had the same issue. Changing the css z-index fixed it:

.leaflet-pane { z-index: 0 !important; } .md-tooltip { z-index: 10000 !important; }