Add CORS configuration and tile handling improvements

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-26 00:34:42 +02:00
parent 604f0e070d
commit f08058ea9c
9 changed files with 159 additions and 25 deletions
+3 -2
View File
@@ -3,7 +3,9 @@ namespace SatelliteProvider.Common.DTO;
public class TileMetadata
{
public Guid Id { get; set; }
public int ZoomLevel { get; set; }
public int TileZoom { get; set; }
public int TileX { get; set; }
public int TileY { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
public double TileSizeMeters { get; set; }
@@ -15,4 +17,3 @@ public class TileMetadata
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}