GeometryEditorReticle constructor

GeometryEditorReticle()

Creates a reticle that can be assigned to ReticleVertexTool.reticle.

The reticle will have a default GeometryEditorReticle.image, GeometryEditorReticle.height, and GeometryEditorReticle.width.

This constructor can be used to reset the reticle of an existing ReticleVertexTool back to the default size and image.

Implementation

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