Esempio n. 1
0
 /// <summary>
 /// Sets the new absolute tilt value. 0 means look directly at the horizon, 90 means look directly down. The
 /// minimum tilt angle is 30 degrees and the maximum is 90 degrees. The tilt value can be further constrained
 /// by the Options::setTiltRange method. Values exceeding these ranges will be clamped.
 ///
 /// If durationSeconds &gt; 0 the tilting operation will be animated over time. If the previous tilting animation has not
 /// finished by the time this method is called, it will be stopped.
 /// </summary>
 /// <param name="tilt">The new absolute tilt value in degrees.</param>
 /// <param name="durationSeconds">The duration in which the tilting operation will be completed in seconds.</param>
 public void SetTilt(float tilt, float durationSeconds)
 {
     _baseMapView.SetTilt(tilt, durationSeconds);
 }