mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
CsWinRT1028, C# LangVersion 12
This commit is contained in:
parent
e1a4ba3fd6
commit
c0783efb4a
27 changed files with 67 additions and 119 deletions
|
|
@ -1,20 +1,11 @@
|
|||
namespace MapControl
|
||||
{
|
||||
public class TileMatrix
|
||||
public class TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
||||
{
|
||||
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; }
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue