Minor improvements

This commit is contained in:
ClemensFischer 2022-12-01 23:01:06 +01:00
parent 7e6b187fd7
commit 9280743c8a
4 changed files with 17 additions and 17 deletions

View file

@ -10,10 +10,6 @@ namespace MapControl
{
public class WmtsTileMatrixSet
{
public string Identifier { get; }
public string SupportedCrs { get; }
public IList<WmtsTileMatrix> TileMatrixes { get; }
public WmtsTileMatrixSet(string identifier, string supportedCrs, IEnumerable<WmtsTileMatrix> tileMatrixes)
{
if (string.IsNullOrEmpty(identifier))
@ -35,5 +31,9 @@ namespace MapControl
SupportedCrs = supportedCrs;
TileMatrixes = tileMatrixes.OrderBy(m => m.Scale).ToList();
}
public string Identifier { get; }
public string SupportedCrs { get; }
public IList<WmtsTileMatrix> TileMatrixes { get; }
}
}