minViewAngle property

double get minViewAngle

Get the minimum viewing angle.

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

Must be between 0 and 90, where 0 represents a direct top-down view.

Returns

  • The minimum view angle

Implementation

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

  return resultString['result'];
}