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

14 lines
294 B
C#
Raw Normal View History

2025-02-27 18:46:32 +01:00
using System;
2024-09-01 23:57:47 +02:00
using System.Threading.Tasks;
namespace MapControl
{
public static partial class GeoImage
2024-09-01 23:57:47 +02:00
{
2025-01-26 22:40:33 +01:00
private static Task<GeoBitmap> LoadGeoTiff(string sourcePath)
2024-09-01 23:57:47 +02:00
{
throw new InvalidOperationException("GeoTIFF is not supported.");
}
}
}