mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-05 00:00:46 +01:00
17 lines
477 B
C#
17 lines
477 B
C#
// 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();
|
|
}
|
|
}
|
|
}
|