Coordinate(EagerLoad) Constructor
Creates an empty Coordinates object with specified eager loading options.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public Coordinate(
EagerLoad eagerLoad
)
Parameters
- eagerLoad EagerLoad
- Eager loading options
Coordinate will initialize with a latitude and longitude of 0 degrees and
a GeoDate of 1900-1-1.
The following example demonstrates how to create a default Coordinate object with defined
eager loading options
//Create a new EagerLoading object set to only
//eager load celestial calculations.
EagerLoading el = new EagerLoading(EagerLoadType.Celestial);
Coordinate c = new Coordinate(el);