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