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

Refactored Leaflet shape drawing plugin. Forked with <3 from Leaflet.FreeDraw

Results 6 leaflet-freehandshapes issues
Sort by recently updated
recently updated
newest added

Is there a method I can use to simply draw the polyline and then don't fill the polygon afterwards? I just want a line.

Hey, how can I get drawn polygon coordinates and how can I clear the map from polygons If I need to ?

Hello everybody, First of all thank you for develop and iterate this amazing library Using it, I found a problem on mobile mode in my react project (see atteched video)....

Hello everyone, thanks for the development of the library, but we have detected an incompatibility problem with the recent version of leaflet 1.7.1 Is there a solution to the problem?...

I use leaflet-freehandshapes version: 0.3.7 leaflet version: 1.6.0 I'm also have fix for that bug: replace this line: L.DomEvent[onoff](document.body, "mouseleave", this.mouseUpLeave.bind(this)) to this: L.DomEvent[onoff](document.body, "mouseleave", this.mouseUpLeave, this); when I pull...

Hi there, there is a way to forced LatLng to a polygon? I want to create a polygon passing the coordinates into it. something like: ``` freehandshapes.create([ [0,0],[0,1],[1,0],[1,1],[0,0] ]); ```