Coordinate(EagerLoad) Constructor

Creates an empty Coordinates object with specified eager loading options.

Definition

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

Parameters

eagerLoad  EagerLoad
Eager loading options

Remarks

Coordinate will initialize with a latitude and longitude of 0 degrees and a GeoDate of 1900-1-1.

Example

The following example demonstrates how to create a default Coordinate object with defined eager loading options
C#
//Create a new EagerLoading object set to only
//eager load celestial calculations.
EagerLoading el = new EagerLoading(EagerLoadType.Celestial);

Coordinate c = new Coordinate(el);

See Also