zip file for tiles

This commit is contained in:
Anton Martynenko
2025-11-20 12:17:57 +01:00
parent 9048a7b3ec
commit 661396554f
10 changed files with 303 additions and 7 deletions
@@ -117,6 +117,7 @@ public class RouteService : IRouteService
TotalDistanceMeters = totalDistance,
TotalPoints = allPoints.Count,
RequestMaps = request.RequestMaps,
CreateTilesZip = request.CreateTilesZip,
MapsReady = false,
CreatedAt = now,
UpdatedAt = now
@@ -203,6 +204,7 @@ public class RouteService : IRouteService
CsvFilePath = routeEntity.CsvFilePath,
SummaryFilePath = routeEntity.SummaryFilePath,
StitchedImagePath = routeEntity.StitchedImagePath,
TilesZipPath = routeEntity.TilesZipPath,
CreatedAt = routeEntity.CreatedAt,
UpdatedAt = routeEntity.UpdatedAt
};
@@ -241,6 +243,7 @@ public class RouteService : IRouteService
CsvFilePath = route.CsvFilePath,
SummaryFilePath = route.SummaryFilePath,
StitchedImagePath = route.StitchedImagePath,
TilesZipPath = route.TilesZipPath,
CreatedAt = route.CreatedAt,
UpdatedAt = route.UpdatedAt
};