mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
14 lines
294 B
C#
14 lines
294 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MapControl
|
|
{
|
|
public static partial class GeoImage
|
|
{
|
|
private static Task<GeoBitmap> LoadGeoTiff(string sourcePath)
|
|
{
|
|
throw new InvalidOperationException("GeoTIFF is not supported.");
|
|
}
|
|
}
|
|
}
|