mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
21 lines
475 B
C#
21 lines
475 B
C#
namespace MapControl
|
|
{
|
|
public class TileMatrix
|
|
{
|
|
public TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
|
{
|
|
ZoomLevel = zoomLevel;
|
|
XMin = xMin;
|
|
YMin = yMin;
|
|
XMax = xMax;
|
|
YMax = yMax;
|
|
}
|
|
|
|
public int ZoomLevel { get; }
|
|
public int XMin { get; }
|
|
public int YMin { get; }
|
|
public int XMax { get; }
|
|
public int YMax { get; }
|
|
}
|
|
}
|