2017-06-25 23:05:48 +02:00
|
|
|
|
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
2022-01-14 20:22:56 +01:00
|
|
|
|
// © 2022 Clemens Fischer
|
2015-11-11 19:48:50 +01:00
|
|
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
|
|
|
|
|
|
|
|
namespace MapControl
|
|
|
|
|
|
{
|
2020-03-26 19:08:20 +01:00
|
|
|
|
public class TileMatrix
|
2015-11-11 19:48:50 +01:00
|
|
|
|
{
|
2020-03-26 19:08:20 +01:00
|
|
|
|
public TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
2015-11-11 19:48:50 +01:00
|
|
|
|
{
|
|
|
|
|
|
ZoomLevel = zoomLevel;
|
|
|
|
|
|
XMin = xMin;
|
|
|
|
|
|
YMin = yMin;
|
|
|
|
|
|
XMax = xMax;
|
|
|
|
|
|
YMax = yMax;
|
|
|
|
|
|
}
|
2020-10-29 21:46:41 +01:00
|
|
|
|
|
|
|
|
|
|
public int ZoomLevel { get; }
|
|
|
|
|
|
public int XMin { get; }
|
|
|
|
|
|
public int YMin { get; }
|
|
|
|
|
|
public int XMax { get; }
|
|
|
|
|
|
public int YMax { get; }
|
2015-11-11 19:48:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|