maxViewAngle property

double get maxViewAngle

Get the maximum viewing angle in degrees.

The maximum view angle corresponds to the camera looking toward the horizon. Must be between 0 and 90 degrees, where 0 represents a top-down view.

Returns

The maximum view angle in degrees as a double.

Implementation

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

  return resultString['result'];
}