VertexTool constructor

VertexTool()

Creates a new VertexTool.

By default, this tool enables the creation, selection, transformation, and deletion interactions appropriate for creating and editing geometries by interacting with individual vertices. This behavior can be customized with VertexTool.configuration.

Implementation

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