editor: allow continuing polylines

This commit is contained in:
Laura Klünder 2016-12-09 02:14:04 +01:00
parent 57ec770f30
commit 72fcf0feb1

View file

@ -188,6 +188,9 @@ editor = {
editor.map.on('editable:vertex:click', function () {
editor.map.doubleClickZoom.disable();
});
editor.map.on('editable:vertex:ctrlclick editable:vertex:metakeyclick', function (e) {
e.vertex.continue();
});
editor._get_geometry_types();
},