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

How to change 'Square' pointer to a 'Circle' or an icon #1024

Open moorthi07 opened 3 years ago

moorthi07 commented 3 years ago

While drawing any shape, the pointers are big white squares. I like to change the 'white square' pointer to a circle or an icon. I'm using React-draw, it relies on this lib.

Falke-Design commented 3 years ago

Look into: https://stackoverflow.com/questions/63938069/leaflet-custom-edit-handler

arnd-schmidt commented 2 years ago

Yes, using some magic in the CSS will do the trick.

.leaflet-editing-icon { border-radius: 50%; background-color: #ffbf4b; }