mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-06 06:55:04 +00:00
Updated MapTileLayer
This commit is contained in:
parent
8eb3c072f5
commit
0a17a73949
3 changed files with 99 additions and 95 deletions
|
|
@ -6,12 +6,6 @@ namespace MapControl
|
|||
{
|
||||
public class TileMatrix
|
||||
{
|
||||
public readonly int ZoomLevel;
|
||||
public readonly int XMin;
|
||||
public readonly int YMin;
|
||||
public readonly int XMax;
|
||||
public readonly int YMax;
|
||||
|
||||
public TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
||||
{
|
||||
ZoomLevel = zoomLevel;
|
||||
|
|
@ -20,5 +14,11 @@ namespace MapControl
|
|||
XMax = xMax;
|
||||
YMax = yMax;
|
||||
}
|
||||
|
||||
public int ZoomLevel { get; }
|
||||
public int XMin { get; }
|
||||
public int YMin { get; }
|
||||
public int XMax { get; }
|
||||
public int YMax { get; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue