mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-05-07 13:37:47 +00:00
File scoped namespaces
This commit is contained in:
parent
c14377f976
commit
65aba44af6
152 changed files with 11962 additions and 12115 deletions
|
|
@ -1,13 +1,12 @@
|
|||
namespace MapControl
|
||||
namespace MapControl;
|
||||
|
||||
public class TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
||||
{
|
||||
public class TileMatrix(int zoomLevel, int xMin, int yMin, int xMax, int yMax)
|
||||
{
|
||||
public int ZoomLevel => zoomLevel;
|
||||
public int XMin => xMin;
|
||||
public int YMin => yMin;
|
||||
public int XMax => xMax;
|
||||
public int YMax => yMax;
|
||||
public int Width => xMax - xMin + 1;
|
||||
public int Height => yMax - yMin + 1;
|
||||
}
|
||||
public int ZoomLevel => zoomLevel;
|
||||
public int XMin => xMin;
|
||||
public int YMin => yMin;
|
||||
public int XMax => xMax;
|
||||
public int YMax => yMax;
|
||||
public int Width => xMax - xMin + 1;
|
||||
public int Height => yMax - yMin + 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue