Coordinate Constructor

Creates a Coordinate object with default values.

Definition

Namespace: CoordinateSharp
Assembly: CoordinateSharp (in CoordinateSharp.dll) Version: 2.21.1.1
XMLNS for XAML: Not mapped to an xmlns.
C#
public Coordinate()

Remarks

Coordinate will initialize with a latitude and longitude of 0 degrees and a GeoDate of 1900-1-1. All properties will be set to EagerLoaded.

Example

The following example demonstrates how to create a default Coordinate.
C#
Coordinate c = new Coordinate();

See Also