XAML-Map-Control/MapControl/Avalonia/LocationAnimator.Avalonia.cs
2025-02-27 18:46:32 +01:00

13 lines
432 B
C#

namespace MapControl
{
public class LocationAnimator : InterpolatingAnimator<Location>
{
public override Location Interpolate(double progress, Location oldValue, Location newValue)
{
return new Location(
(1d - progress) * oldValue.Latitude + progress * newValue.Latitude,
(1d - progress) * oldValue.Longitude + progress * newValue.Longitude);
}
}
}