From fac62cd1f7d4dc110756fe53382d8627ee84b286 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Tue, 21 May 2024 16:55:06 +0200 Subject: [PATCH] Update LocationAnimator.Avalonia.cs --- MapControl/Avalonia/LocationAnimator.Avalonia.cs | 1 - 1 file changed, 1 deletion(-) 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);