fix: Update basemap URL template
This commit is contained in:
@@ -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}");
|
||||||
|
Reference in New Issue
Block a user