Table of Contents

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

easting double

The easting.

northing double

The northing.

Properties

Easting

Gets the easting.

public double Easting { get; }

Property Value

double

Northing

Gets the northing.

public double Northing { get; }

Property Value

double

Values

Gets the coordinate values.

public override ReadOnlyCollection<double> Values { get; }

Property Value

ReadOnlyCollection<double>