minViewAngle property

double get minViewAngle

Get the minimum viewing angle.

Minimum view angle is when the camera is looking directly downward at the map.

Returns

  • The minimum view angle

Throws

  • An exception if it fails.

Implementation

double get minViewAngle {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMinViewAngle',
  );

  return resultString['result'];
}