diff --git a/src/controls/editor/shapes.js b/src/controls/editor/shapes.js index 041c4b464..30d963ccd 100644 --- a/src/controls/editor/shapes.js +++ b/src/controls/editor/shapes.js @@ -5,6 +5,15 @@ export default (drawType) => { box: { type: 'Circle', geometryFunction: createBox() + }, + Line: { + type: 'LineString' + }, + Polygon: { + type: 'Polygon' + }, + Point: { + type: 'Point' } };