public void SetAnimationLength(TimeSpan length) { var mapView = MapView.Active; if (mapView != null) return; var animation = mapView.Map.Animation; var duration = animation.Duration; if (duration == TimeSpan.Zero) return; var factor = length.TotalSeconds / duration.TotalSeconds; animation.ScaleDuration(factor); }
public void ScaleAnimationAfterTime(TimeSpan afterTime, TimeSpan length) { var mapView = MapView.Active; if (mapView != null) return; var animation = mapView.Map.Animation; var duration = animation.Duration; if (duration == TimeSpan.Zero || duration <= afterTime) return; var factor = length.TotalSeconds / (duration.TotalSeconds - afterTime.TotalSeconds); animation.ScaleDuration(afterTime, duration, factor); }
Target Platforms: Windows 11, Windows 10