position property

ArcGISPoint position

The position of the location.

Implementation

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