mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Replaced MapRect and Scale by Rect and Point
This commit is contained in:
parent
dd62545b41
commit
7e18b6b984
32 changed files with 256 additions and 238 deletions
|
|
@ -6,6 +6,14 @@ namespace MapControl
|
|||
{
|
||||
public class MapProjectionFactory
|
||||
{
|
||||
private static MapProjectionFactory instance;
|
||||
|
||||
public static MapProjectionFactory Instance
|
||||
{
|
||||
get => instance ?? (instance = new MapProjectionFactory());
|
||||
set => instance = value;
|
||||
}
|
||||
|
||||
public virtual MapProjection GetProjection(int epsgCode)
|
||||
{
|
||||
MapProjection projection = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue