minViewAngle property

double get minViewAngle

Get the minimum viewing angle in degrees.

The minimum view angle corresponds to the camera looking directly downward. Must be between 0 and 90 degrees, where 0 represents a top-down view.

Returns

The minimum view angle in degrees as a double.

Implementation

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

  return resultString['result'];
}