Leaflet / Leaflet.draw

Vector drawing and editing plugin for Leaflet
https://leaflet.github.io/Leaflet.draw/docs/leaflet-draw-latest.html
MIT License
1.96k stars 992 forks source link

can't have delete without edit #1061

Open forgotten-map opened 1 year ago

forgotten-map commented 1 year ago

I have a use case where I need to be able to delete layers, but not edit them. It would be nice to have a way to specify the options so that only the delete tool is shown, without the edit button.

forgotten-map commented 1 year ago

actually I can achieve that with css

.leaflet-draw-edit-edit{
  display: none;
}

It would still be nice to be able to specify that in the control options, but at least there's a way.