updateLocation method

void updateLocation(
  1. ArcGISLocation location
)

Updates the position of the current location.

Parameters:

Implementation

void updateLocation(
  ArcGISLocation location,
) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDataSource_updateLocation(
      _handle,
      location._handle,
      errorHandler,
    );
  });
}