Class Projection
A very minimal implementation that is only capable of projecting between
SphericalMercator and WGS84.
Assembly: Mapsui.dll
Syntax
public class Projection : IProjection
Constructors
|
Edit this page
View Source
Projection()
Declaration
Methods
|
Edit this page
View Source
IsProjectionSupported(string?, string?)
Declaration
public bool IsProjectionSupported(string? fromCRS, string? toCRS)
Parameters
Returns
|
Edit this page
View Source
Project(string, string, IFeature)
Declaration
public void Project(string fromCRS, string toCRS, IFeature feature)
Parameters
|
Edit this page
View Source
Project(string, string, MPoint)
Declaration
public void Project(string fromCRS, string toCRS, MPoint point)
Parameters
|
Edit this page
View Source
Project(string, string, MRect)
Declaration
public void Project(string fromCRS, string toCRS, MRect rect)
Parameters
|
Edit this page
View Source
Project(string, string, IEnumerable<IFeature>)
Declaration
public void Project(string fromCRS, string toCRS, IEnumerable<IFeature> features)
Parameters
|
Edit this page
View Source
Project(string, string, double, double)
Declaration
public (double X, double Y) Project(string fromCRS, string toCRS, double x, double y)
Parameters
Returns
Implements