Exemplo n.º 1
0
 /// <summary>
 /// Sets the new absolute rotation value. 0 means look north, 90 means west, -90 means east and 180 means south.
 /// The rotation value will be wrapped to the range of (-180 .. 180]. Rotations are ignored if Options::setRotatable
 /// is set to false.
 ///
 /// If durationSeconds &gt; 0 the rotating operation will be animated over time. If the previous rotating animation has not
 /// finished by the time this method is called, it will be stopped.
 /// </summary>
 /// <param name="angle">The new absolute rotation angle value in degrees.</param>
 /// <param name="durationSeconds">The duration in which the zooming operation will be completed in seconds.</param>
 public void SetMapRotation(float angle, float durationSeconds)
 {
     _baseMapView.SetRotation(angle, durationSeconds);
 }