Coordinate(Double, Double, EagerLoad) Constructor

Creates a populated Coordinate 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(
	double lat,
	double longi,
	EagerLoad eagerLoad
)

Parameters

lat  Double
signed latitude
longi  Double
signed longitude
eagerLoad  EagerLoad
Eager loading options

Remarks

Geodate will default to 1900-01-01.

Example

The following example demonstrates how to create a defined 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(25, 25, el);

See Also