mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
18 lines
430 B
C#
18 lines
430 B
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// © 2022 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MapControl.Images
|
|
{
|
|
public partial class GeoTaggedImage
|
|
{
|
|
public static Task<GeoTaggedImage> ReadGeoTiff(string imageFilePath)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|