mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
25 lines
641 B
C#
25 lines
641 B
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// Copyright © 2024 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
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; }
|
|
}
|
|
}
|