fix(core): Moves map definitions and cleans up loading maps, regions, and tiles (#431)

- [X] Moves map definitions to a `map-definitions.json` file.
- [X] Creates a TileMatrixLoader.
- [X] Moves tile matrix and multi data configurations closer to their classes.
This commit is contained in:
Kamron Batman 2021-01-25 11:05:52 -08:00 committed by GitHub
parent 8580139544
commit 07751654b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 290 additions and 76 deletions

View file

@ -536,6 +536,12 @@ namespace Server
List = Array.Empty<MultiTileEntry>();
}
public static void Configure()
{
// OSI Client Patch 7.0.9.0
PostHSFormat = ServerConfiguration.GetOrUpdateSetting("maps.enablePostHSMultiComponentFormat", true);
}
public static bool PostHSFormat { get; set; }
public Point2D Min => m_Min;