CoordinateTryParse(String, EagerLoad, Coordinate) Method
Attempts to parse a string into a Coordinate with specified eager loading settings.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public static bool TryParse(
string value,
EagerLoad eagerLoad,
out Coordinate coordinate
)
- value String
- Coordinate string
- eagerLoad EagerLoad
- Eager loading options
- coordinate Coordinate
- Coordinate
Booleanboolean
The following example parses a decimal degree formatted geodetic coordinate string.
Eager loading is turned off for improved efficiency.
Coordinate c;
EagerLoad el = new EagerLoad(false);
if(Coordinate.TryParse("N 32.891º W 64.872º", el, out c))
{
Console.WriteLine(c); //N 32º 53' 28.212" W 64º 52' 20.914"
}