mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-06-21 08:11:13 +00:00
534ab41b8e
Pure whitespace-only cleanup uncovered by the new format gate from the previous commit. Verified via `git diff -w --stat`: only 4 files differ when whitespace is ignored, and those differ only by the BOM byte. Cleanup kinds applied across 22 source files: - BOM removal (MapConfig.cs, SatTile.cs, GeoUtils.cs, IntegrationTests/Program.cs) - CRLF -> LF (IntegrationTests/Program.cs) - Trailing whitespace on blank lines (Common, Api, DataAccess, IntegrationTests, Services.RegionProcessing, Services.TileDownloader) - Final newline added (RoutePoint.cs, GeoPoint.cs, others) After this commit `dotnet format whitespace SatelliteProvider.sln --verify-no-changes` exits 0; AC-1 is enforceable from `scripts/ run-tests.sh` going forward. Also lands the batch 22 report, code-review report (PASS_WITH_WARNINGS, 2 Low findings — both deferred per spec), dependency-table status update (AZ-372 -> Done (In Testing)), task archive (todo/ -> done/), and autodev state update. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
496 B
C#
14 lines
496 B
C#
namespace SatelliteProvider.Common.Configs;
|
|
|
|
public class MapConfig
|
|
{
|
|
public string Service { get; set; } = null!;
|
|
public string ApiKey { get; set; } = null!;
|
|
|
|
// AZ-371 / C18 — Google Maps tile constants promoted from source literals.
|
|
public int TileSizePixels { get; set; } = 256;
|
|
public int[] AllowedZoomLevels { get; set; } = new[] { 15, 16, 17, 18, 19 };
|
|
public int RetryBaseDelaySeconds { get; set; } = 1;
|
|
public int RetryMaxDelaySeconds { get; set; } = 30;
|
|
}
|