unionWithPoint method

void unionWithPoint(
  1. 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(
  ArcGISPoint point,
) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_unionWithPoint(
      _handle,
      point._handle,
      errorHandler,
    );
  });
}