ModelGenericExtensionsToDecimalDegreesString(GeoLocationWithHeading, Boolean) Method

Converts a GeoLocationWithHeading to a degrees/minutes/seconds string. Altitude is ignored.

Definition

Namespace: MobileTrack.Common.Extensions
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
public static string ToDecimalDegreesString(
	this GeoLocationWithHeading location,
	bool includeDegreesSymbol = true
)

Parameters

location  GeoLocationWithHeading
includeDegreesSymbol  Boolean  (Optional)
Whether to include the ° symbol in the degree string.

Return Value

String
Decimal Degrees string based on the latitude and longitude of location

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type GeoLocationWithHeading. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also