centerAt method

void centerAt(
  1. ArcGISPoint point
)

Centers the envelope at the specified point.

The point's spatial reference must be the same as the envelope builder's.

Parameters:

  • point — The point to center on.

Implementation

void centerAt(
  ArcGISPoint point,
) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_centerAt(
      _handle,
      point._handle,
      errorHandler,
    );
  });
}