mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-02-20 06:34:35 +01:00
Update LocationAnimator.Avalonia.cs
This commit is contained in:
parent
52656ca8f4
commit
fac62cd1f7
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue