You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to display additional handles on the rectangle in addition to the vertices when I am editing the rectangle. I am using Leaflet.Editable and drawing the rectangle as below:
var rectangle = new L.rectangle(bounds, { color: "#ff7800", weight: 1 }).addTo(map);
rectangle.enableEdit();
I want to add handles in between to two vertex.
I tried setting skipmiddlemarkers to false, lineGuideOptions to options:true. But these are not working. Also tried adding L.marker(point).addTo(map) but its adding a drop pin which is not editable with the rectangle.
Thank you.
The text was updated successfully, but these errors were encountered:
I need to display additional handles on the rectangle in addition to the vertices when I am editing the rectangle. I am using Leaflet.Editable and drawing the rectangle as below:
var rectangle = new L.rectangle(bounds, { color: "#ff7800", weight: 1 }).addTo(map);
rectangle.enableEdit();
I want to add handles in between to two vertex.
I tried setting skipmiddlemarkers to false, lineGuideOptions to options:true. But these are not working. Also tried adding L.marker(point).addTo(map) but its adding a drop pin which is not editable with the rectangle.
Thank you.
The text was updated successfully, but these errors were encountered: