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

18 lines
465 B
C#
Raw Normal View History

2024-09-01 23:57:47 +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 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.");
}
}
}