GeoOrientationUpdate constructor

GeoOrientationUpdate(
  1. double? bearing,
  2. double? tilt
)
  • bearing Bearing in degrees. When the passed value is null bearing is not updated and the current value is kept. NaN value is converted to null.

  • tilt Tilt in degrees. When the passed value is null tilt is not updated and the current value is kept. NaN value is converted to null.

Implementation

factory GeoOrientationUpdate(double? bearing, double? tilt) => $prototype.$init(bearing, tilt);