tool property
The tool defining how you interact with the view to create and edit the GeometryEditor.geometry.
The default value is a VertexTool with all interactive operations enabled, providing a common way of editing points, multipoints, polygons, and polylines.
The tool can be replaced while a GeometryEditor is started (GeometryEditor.isStarted = true), enabling a combination of tools to be used to edit a geometry.
Implementation
GeometryEditorTool get tool => _tool.value;
Implementation
set tool(GeometryEditorTool value) => _tool.value = value;