GeometryEditorStyle constructor

GeometryEditorStyle()

Creates a new GeometryEditorStyle with a consistent set of red symbols, and displays white numbers on vertices.

Using this constructor results in the same default symbology as the GeometryEditorTool.style.

Implementation

factory GeometryEditorStyle() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryEditorStyle_create(
      errorHandler,
    );
  });
  return GeometryEditorStyle._withHandle(handle);
}