XAML-Map-Control/MapControl/Avalonia/LocationAnimator.Avalonia.cs
2026-04-13 17:14:49 +02:00

13 lines
421 B
C#

using Avalonia.Animation;
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);
}
}