maxViewAngle property

double get maxViewAngle

Get the maximum viewing angle.

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

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

Returns

  • The maximum view angle

Implementation

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

  return resultString['result'];
}