course property

double course

The course of the location in degrees clockwise, 0 being true North.

Implementation

double get course {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Location_getCourse(_handle, errorHandler);
  });
}