CoordinateLoadUTM_MGRS_Info Method
Load UTM and MGRS information (required if eager loading is turned off).
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public void LoadUTM_MGRS_Info()
The following example shows how to Load UTM and MGRS information when eager loading is turned off.
EagerLoad eagerLoad = new EagerLoad();
eagerLoad.UTM_MGRS = false;
Coordinate c = new Coordinate(40.0352, -74.5844, DateTime.Now, eagerLoad);
//To load UTM_MGRS information when ready
c.LoadUTM_MGRSInfo();