maxViewAngle property

double get maxViewAngle

Get the maximum viewing angle.

Maximum view angle is when the camera is looking directly toward the horizon.

Returns

  • The maximum view angle

Throws

  • An exception if it fails.

Implementation

double get maxViewAngle {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMaxViewAngle',
  );

  return resultString['result'];
}