Class GeoJson3DProjectedCoordinates
- Namespace
- MongoDB.Driver.GeoJsonObjectModel
- Assembly
- MongoDB.Driver.dll
Represents a GeoJson 3D projected position (easting, northing, altitude).
[BsonSerializer(typeof(GeoJson3DProjectedCoordinatesSerializer))]
public class GeoJson3DProjectedCoordinates : GeoJsonCoordinates, IEquatable<GeoJsonCoordinates>
- Inheritance
-
GeoJson3DProjectedCoordinates
- Implements
- Inherited Members
Constructors
GeoJson3DProjectedCoordinates(double, double, double)
Initializes a new instance of the GeoJson3DProjectedCoordinates class.
public GeoJson3DProjectedCoordinates(double easting, double northing, double altitude)
Parameters
Properties
Altitude
Gets the altitude.
public double Altitude { get; }
Property Value
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; }