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