pitchInDegrees property

double get pitchInDegrees

Get the camera pitch in degrees, with respect to Earth

Returns

  • The pitch angle of the camera in degrees

Throws

  • An exception if it fails

Implementation

double get pitchInDegrees {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapView',
    'getPitchInDegrees',
  );

  return resultString['result'];
}