Added GeoApiProjectionFactory

This commit is contained in:
Clemens 2022-01-19 23:40:05 +01:00
parent d7c45effc6
commit 5b9e5529f6
6 changed files with 106 additions and 4 deletions

View file

@ -106,6 +106,15 @@ namespace MapControl.Projections
get { return isWebMercator; }
}
public GeoApiProjection(string wkt = null)
{
if (wkt != null)
{
WKT = wkt;
}
}
public override Point LocationToMap(Location location)
{
if (LocationToMapTransform == null)