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

18 lines
460 B
C#
Raw Normal View History

2024-09-01 23:57:47 +02:00
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
2025-01-01 18:57:55 +01:00
// Copyright © Clemens Fischer
2024-09-01 23:57:47 +02:00
// Licensed under the Microsoft Public License (Ms-PL)
using System;
using System.Threading.Tasks;
namespace MapControl
{
public static partial class GeoImage
2024-09-01 23:57:47 +02:00
{
private static Task<GeoBitmap> LoadGeoTiffAsync(string sourcePath)
2024-09-01 23:57:47 +02:00
{
throw new InvalidOperationException("GeoTIFF is not supported.");
}
}
}