useCourseSymbolOnMovement property

bool useCourseSymbolOnMovement

True if the LocationDisplay.courseSymbol is used to display current location, when the location updates indicate the device is moving, false otherwise.

If no course information is available, the default symbol will be used instead. The LocationDisplay.courseSymbol is rotated in order to indicate the device's direction of travel. Generally, course information is only available if the device is actively moving (the location has a positive speed).

Implementation

bool get useCourseSymbolOnMovement {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getUseCourseSymbolOnMovement(
        _handle, errorHandler);
  });
}
void useCourseSymbolOnMovement=(bool value)

Implementation

set useCourseSymbolOnMovement(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDisplay_setUseCourseSymbolOnMovement(
        _handle, value, errorHandler);
  });
}