fix: Update basemap URL template

This commit is contained in:
2025-07-04 23:22:46 +08:00
parent 65b158f387
commit e182ebd53f

View File

@@ -16,7 +16,7 @@ namespace Cryville.EEW.Unity.Map {
protected override MapTileBitmapHolder CreateBitmapHolder(MapTileIndex index) => new( protected override MapTileBitmapHolder CreateBitmapHolder(MapTileIndex index) => new(
index, index,
GameObject.Instantiate(PrefabBitmapHolder, Parent, false), GameObject.Instantiate(PrefabBitmapHolder, Parent, false),
new($"https://server.arcgisonline.com/ArcGIS/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{index.Z}/{index.NY}/{index.NX}") new($"https://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer/tile/{index.Z}/{index.NY}/{index.NX}")
); );
protected override string GetCacheFilePath(MapTileIndex index) => Path.Combine(CacheDir, $"map/{index.Z}/{index.NX}/{index.NY}"); protected override string GetCacheFilePath(MapTileIndex index) => Path.Combine(CacheDir, $"map/{index.Z}/{index.NX}/{index.NY}");