location property

ArcGISLocation? location

The most recent location reported by the location data source.

The ArcGISLocation provides data for the single location, including position, course, velocity, and accuracy.

Implementation

ArcGISLocation? get location {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getLocation(_handle, errorHandler);
  });
  return ArcGISLocation._fromHandle(objectHandle);
}