ui-leaflet icon indicating copy to clipboard operation
ui-leaflet copied to clipboard

leaflet map getting over mdDialog

Open decko opened this issue 9 years ago • 4 comments

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

decko avatar Dec 11 '16 21:12 decko

Please check CSS styles on the map...

elesdoar avatar Dec 13 '16 17:12 elesdoar

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

decko avatar Dec 15 '16 15:12 decko

Please add a example in JSFiddle or Plunk.

Thanks

elesdoar avatar Jan 26 '17 17:01 elesdoar

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

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

MojioMS avatar Nov 09 '17 08:11 MojioMS