diff --git a/MapControl/Avalonia/LocationAnimator.Avalonia.cs b/MapControl/Avalonia/LocationAnimator.Avalonia.cs index ad58051f..7a422131 100644 --- a/MapControl/Avalonia/LocationAnimator.Avalonia.cs +++ b/MapControl/Avalonia/LocationAnimator.Avalonia.cs @@ -10,7 +10,6 @@ namespace MapControl { public override Location Interpolate(double progress, Location oldValue, Location newValue) { - System.Diagnostics.Debug.WriteLine(progress); return new Location( (1d - progress) * oldValue.Latitude + progress * newValue.Latitude, (1d - progress) * oldValue.Longitude + progress * newValue.Longitude);