mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-13 04:00:00 +01:00
Comments
This commit is contained in:
parent
28f2620e7d
commit
c3fcfa9afe
|
|
@ -8,12 +8,12 @@ using Avalonia;
|
|||
namespace MapControl
|
||||
{
|
||||
/// <summary>
|
||||
/// Spherical Azimuthal Equidistant Projection - No standard CRS ID.
|
||||
/// Spherical Azimuthal Equidistant Projection - No standard CRS identifier.
|
||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.195-197.
|
||||
/// </summary>
|
||||
public class AzimuthalEquidistantProjection : AzimuthalProjection
|
||||
{
|
||||
public const string DefaultCrsId = "AUTO2:97003"; // proprietary CRS ID
|
||||
public const string DefaultCrsId = "AUTO2:97003"; // proprietary CRS identifier
|
||||
|
||||
public AzimuthalEquidistantProjection()
|
||||
: this(DefaultCrsId)
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class GnomonicProjection : AzimuthalProjection
|
||||
{
|
||||
public const string DefaultCrsId = "AUTO2:97001"; // GeoServer non-standard CRS ID
|
||||
public const string DefaultCrsId = "AUTO2:97001"; // GeoServer non-standard CRS identifier
|
||||
|
||||
public GnomonicProjection()
|
||||
: this(DefaultCrsId)
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ namespace MapControl
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a MapProjection instance from a CRS id string.
|
||||
/// Creates a MapProjection instance from a CRS identifier string.
|
||||
/// </summary>
|
||||
public static MapProjection Parse(string crsId)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class StereographicProjection : AzimuthalProjection
|
||||
{
|
||||
public const string DefaultCrsId = "AUTO2:97002"; // GeoServer non-standard CRS ID
|
||||
public const string DefaultCrsId = "AUTO2:97002"; // GeoServer non-standard CRS identifier
|
||||
|
||||
public StereographicProjection()
|
||||
: this(DefaultCrsId)
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ namespace MapControl
|
|||
{
|
||||
/// <summary>
|
||||
/// WGS84 Universal Transverse Mercator Projection with automatic zone selection from
|
||||
/// the projection center. If the CRS Id passed to the constructor is null or empty,
|
||||
/// appropriate CRS Ids EPSG:32601 to EPSG:32660 and EPSG:32701 to EPSG:32760 are used.
|
||||
/// the projection center. If the CRS identifier passed to the constructor is null or empty,
|
||||
/// appropriate values from EPSG:32601 to EPSG:32660 and EPSG:32701 to EPSG:32760 are used.
|
||||
/// </summary>
|
||||
public class Wgs84AutoUtmProjection : Wgs84UtmProjection
|
||||
{
|
||||
|
|
|
|||
|
|
@ -74,7 +74,8 @@ namespace MapControl
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a dictionary of all tile matrix sets supported by a WMTS, with their CRS as dictionary key.
|
||||
/// Gets a dictionary of all tile matrix sets supported by a WMTS,
|
||||
/// with their CRS identifiers as dictionary keys.
|
||||
/// </summary>
|
||||
public Dictionary<string, WmtsTileMatrixSet> TileMatrixSets { get; } = [];
|
||||
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ namespace MapControl.Projections
|
|||
{
|
||||
/// <summary>
|
||||
/// WGS84 Universal Transverse Mercator Projection with automatic zone selection from
|
||||
/// the projection center. If the CRS Id passed to the constructor is null or empty,
|
||||
/// appropriate CRS Ids EPSG:32601 to EPSG:32660 and EPSG:32701 to EPSG:32760 are used.
|
||||
/// the projection center. If the CRS identifier passed to the constructor is null or empty,
|
||||
/// appropriate values from EPSG:32601 to EPSG:32660 and EPSG:32701 to EPSG:32760 are used.
|
||||
/// </summary>
|
||||
public class Wgs84AutoUtmProjection : Wgs84UtmProjection
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue