midVertexSymbol property
The symbol used to draw the mid-vertices of the current geometry when editing polygon or polyline geometries.
Mid-vertices do not exist in the GeometryEditor.geometry, but instead exist only in the display, located between vertices in polygon and polyline geometries as a visual cue for interactive editing. When moved interactively, a new vertex is inserted at that location.
If null, no mid-vertex is displayed. In this case, you can still insert vertices between existing vertices by selecting an existing GeometryEditorVertex and tapping on the map.
Implementation
ArcGISSymbol? get midVertexSymbol => _midVertexSymbol.value;
Implementation
set midVertexSymbol(ArcGISSymbol? value) => _midVertexSymbol.value = value;