XAML-Map-Control/MapControl/Avalonia/LocationAnimator.Avalonia.cs

17 lines
477 B
C#
Raw Normal View History

2024-05-20 23:24:34 +02:00
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
// Copyright © 2024 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
using Avalonia.Animation;
namespace MapControl
{
public class LocationAnimator : InterpolatingAnimator<Location>
{
public override Location Interpolate(double progress, Location oldValue, Location newValue)
{
throw new System.NotImplementedException();
}
}
}