Leaflet/Leaflet.draw

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

moorthi07 opened this issue · 2 comments

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.

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

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