I want to enable the user to draw a Line (which is a Polyline with only 2 points).
I enable drawing and the listen for vertexadded
. When the _rings
marker count equals 2, I disable drawing.
This feels wrong for several reasons:
- I access a private variable
_rings
- Now I disable drawing but to visualise the Line I must reinitiate it in visual mode
- To allow the user to move the 2 points of the line, I must reinitiate the Line in edit mode.
- In edit mode the splitting of a line between 2 markers must be disabled, is this possible?
Am I missing a simpler way of doing this?
map.pm.enableDraw('Line', {
snappable: true,
snapDistance: 20,
});
map.on('pm:drawstart', (event: any) => {
const { workingLayer } = event;
workingLayer.on('pm:vertexadded', (e: any) => {
if (workingLayer._rings[0].length >= 2) {
map.pm.disableDraw('Line', {
snappable: true,
snapDistance: 20,
});
}
});
});
layer.getLatLngs()
instead of the variable_rings
.map.pm.disableDraw()
, finish the shape withmap.pm.Draw.Line._finishShape()
to add the drawn layer to the mapmap.pm.enableGlobalEditMode()
to enable editing for all layers or you can enable the wanted layer withlayer.pm.enable()
hideMiddleMarkers: true
https://jsfiddle.net/falkedesign/7sL02y53/