CoordinateParse(String, EagerLoad) Method

Parses a string into a Coordinate with specified eager loading settings.

Definition

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

Parameters

value  String
Coordinate string
eagerLoad  EagerLoad
Eager loading options

Return Value

Coordinate
Coordinate

Example

The following example parses a decimal degree formatted geodetic coordinate string. Eager loading is turned off for improved efficiency.
C#
EagerLoad el = new EagerLoad(false);
Coordinate c = Coordinate.Parse("N 32.891º W 64.872º", el);

See Also