mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 11:06:38 +00:00
route stitching
This commit is contained in:
@@ -58,6 +58,7 @@ public class CreateRouteRequest
|
||||
public double RegionSizeMeters { get; set; }
|
||||
public int ZoomLevel { get; set; }
|
||||
public List<RoutePointInput> Points { get; set; } = new();
|
||||
public bool RequestMaps { get; set; } = false;
|
||||
}
|
||||
|
||||
public class RoutePointModel
|
||||
@@ -80,6 +81,11 @@ public class RouteResponseModel
|
||||
public double TotalDistanceMeters { get; set; }
|
||||
public int TotalPoints { get; set; }
|
||||
public List<RoutePointModel> 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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user