coordinate property

ArcGISPoint coordinate

The point found.

Implementation

ArcGISPoint get coordinate {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ProximityResult_getCoordinate(
      _handle,
      errorHandler,
    );
  });
  return ArcGISPoint._fromHandle(
    objectHandle,
  )!;
}