route stitching

This commit is contained in:
Anton Martynenko
2025-11-01 16:54:46 +01:00
parent 8714a4817d
commit 11395ec913
15 changed files with 698 additions and 10 deletions
@@ -8,5 +8,6 @@ public class CreateRouteRequest
public double RegionSizeMeters { get; set; }
public int ZoomLevel { get; set; }
public List<RoutePoint> Points { get; set; } = new();
public bool RequestMaps { get; set; } = false;
}
@@ -10,6 +10,11 @@ public class RouteResponse
public double TotalDistanceMeters { get; set; }
public int TotalPoints { get; set; }
public List<RoutePointDto> Points { get; set; } = new();
public bool RequestMaps { get; set; }
public bool MapsReady { get; set; }
public string? CsvFilePath { get; set; }
public string? SummaryFilePath { get; set; }
public string? StitchedImagePath { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}