2017-06-25 23:05:48 +02:00
|
|
|
|
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
2020-01-09 19:40:10 +01:00
|
|
|
|
// © 2020 Clemens Fischer
|
2015-11-11 19:48:50 +01:00
|
|
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
|
|
|
|
|
|
|
|
namespace MapControl
|
|
|
|
|
|
{
|
2020-03-20 18:12:56 +01:00
|
|
|
|
public class TileGrid
|
2015-11-11 19:48:50 +01:00
|
|
|
|
{
|
|
|
|
|
|
public readonly int ZoomLevel;
|
|
|
|
|
|
public readonly int XMin;
|
|
|
|
|
|
public readonly int YMin;
|
|
|
|
|
|
public readonly int XMax;
|
|
|
|
|
|
public readonly int YMax;
|
|
|
|
|
|
|
|
|
|
|
|
public TileGrid(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
|
|
|
|
|
{
|
|
|
|
|
|
ZoomLevel = zoomLevel;
|
|
|
|
|
|
XMin = xMin;
|
|
|
|
|
|
YMin = yMin;
|
|
|
|
|
|
XMax = xMax;
|
|
|
|
|
|
YMax = yMax;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|