Class GeoJson2DProjectedCoordinates
- Namespace
- MongoDB.Driver.GeoJsonObjectModel
- Assembly
- MongoDB.Driver.dll
Represents a GeoJson 2D projected position (easting, northing).
[BsonSerializer(typeof(GeoJson2DProjectedCoordinatesSerializer))]
public class GeoJson2DProjectedCoordinates : GeoJsonCoordinates, IEquatable<GeoJsonCoordinates>
- Inheritance
-
GeoJson2DProjectedCoordinates
- Implements
- Inherited Members
Constructors
GeoJson2DProjectedCoordinates(double, double)
Initializes a new instance of the GeoJson2DProjectedCoordinates class.
public GeoJson2DProjectedCoordinates(double easting, double northing)
Parameters
Properties
Easting
Gets the easting.
public double Easting { get; }
Property Value
Northing
Gets the northing.
public double Northing { get; }
Property Value
Values
Gets the coordinate values.
public override ReadOnlyCollection<double> Values { get; }