maximumPitch property

double get maximumPitch

The maximum pitch of the map’s camera toward the horizon measured in degrees.

If the value of this property is smaller than that of the minimumPitch property, the behavior is undefined. The pitch may not exceed 60 degrees regardless of this property.

The default value of this property is 60 degrees.

Implementation

double get maximumPitch {
  return objc.useMsgSendVariants ? _objc_msgSend_1ukqyt8Fpret(this.ref.pointer, _sel_maximumPitch) : _objc_msgSend_1ukqyt8(this.ref.pointer, _sel_maximumPitch);

}
set maximumPitch (double value)

The maximum pitch of the map’s camera toward the horizon measured in degrees.

If the value of this property is smaller than that of the minimumPitch property, the behavior is undefined. The pitch may not exceed 60 degrees regardless of this property.

The default value of this property is 60 degrees.

Implementation

set maximumPitch(double value) {
_objc_msgSend_hwm8nu(this.ref.pointer, _sel_setMaximumPitch_, value);

}