unionWithPoint method

void unionWithPoint(
  1. {required ArcGISPoint point}
)

Finds the union of the builder's envelope and the specified point and updates the envelope builder with the result.

Parameters:

  • point — A point to union with.

Implementation

void unionWithPoint({required ArcGISPoint point}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_unionWithPoint(
        _handle, point._handle, errorHandler);
  });
}