CoordinateLoadCartesianInfo Method

Load Cartesian information (required if eager loading is turned off).

Definition

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

Example

The following example shows how to Load Cartesian information when eager loading is turned off.
C#
EagerLoad eagerLoad = new EagerLoad();
eagerLoad.Cartesian = false;
Coordinate c = new Coordinate(40.0352, -74.5844, DateTime.Now, eagerLoad);

//To load Cartesian information when ready
c.LoadCartesianInfo();

See Also