Exemplo n.º 1
0
 /// <summary>
 /// Rotates the view relative to the current rotation value. Positive values rotate clockwise, negative values counterclockwise.
 /// The new calculated 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="deltaAngle">The delta angle value in degrees.</param>
 /// <param name="durationSeconds">The duration in which the zooming operation will be completed in seconds.</param>
 public void Rotate(float deltaAngle, float durationSeconds)
 {
     _baseMapView.Rotate(deltaAngle, durationSeconds);
 }