ReticleVertexTool constructor
Creates a new ReticleVertexTool with a default GeometryEditorReticle and ReticleInteractionConfiguration
By default, the ReticleVertexTool.configuration allows you to create and move individual vertices. By default, it does not allow the creation of new parts in multipart geometries. This behavior can be customized with ReticleVertexTool.configuration. For more information on how these interactions work, see ReticleInteractionConfiguration.
Implementation
factory ReticleVertexTool() {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ReticleVertexTool_create(
errorHandler,
);
});
return ReticleVertexTool._withHandle(handle);
}