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

13 lines
264 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;
2026-04-13 17:14:49 +02:00
namespace MapControl;
public static partial class GeoImage
2024-09-01 23:57:47 +02:00
{
2026-04-13 17:14:49 +02:00
private static Task<GeoBitmap> LoadGeoTiff(string sourcePath)
2024-09-01 23:57:47 +02:00
{
2026-04-13 17:14:49 +02:00
throw new InvalidOperationException("GeoTIFF is not supported.");
2024-09-01 23:57:47 +02:00
}
}