viewAngle property
The camera's pitch angle in degrees. Must be between 0 and 90, where 0 represents a direct top-down view.
Returns
- The view angle
Implementation
double get viewAngle {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'getPitchInDegrees',
);
return resultString['result'];
}