mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Primary constructor parameters
This commit is contained in:
parent
f63fba98c1
commit
65462697df
8 changed files with 35 additions and 31 deletions
|
|
@ -2,10 +2,10 @@
|
|||
{
|
||||
public class TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
||||
{
|
||||
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;
|
||||
public int ZoomLevel => zoomLevel;
|
||||
public int XMin => xMin;
|
||||
public int YMin => yMin;
|
||||
public int XMax => xMax;
|
||||
public int YMax => yMax;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue