mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 18:06:39 +00:00
add gps matcher service
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
namespace Azaion.Common.DTO;
|
||||
|
||||
public class DownloadTilesResult
|
||||
{
|
||||
public ConcurrentDictionary<(int x, int y), byte[]> Tiles { get; set; } = null!;
|
||||
public double LatMin { get; set; }
|
||||
public double LatMax { get; set; }
|
||||
public double LonMin { get; set; }
|
||||
public double LonMax { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user