In The Hand LtdIn The Hand
GeoCoordinate Constructor (latitude, longitude, altitude, horizontalAccuracy, verticalAccuracy, speed, course)
NamespacesInTheHand.Device.LocationGeoCoordinateGeoCoordinate(Double, Double, Double, Double, Double, Double, Double)
.NET Components for Mobility
Initializes a new instance of the GeoCoordinate class from latitude, longitude, altitude, horizontal accuracy, vertical accuracy, speed and course.
Declaration Syntax
C#Visual Basic
public GeoCoordinate(
	double latitude,
	double longitude,
	double altitude,
	double horizontalAccuracy,
	double verticalAccuracy,
	double speed,
	double course
)
Public Sub New ( _
	latitude As Double, _
	longitude As Double, _
	altitude As Double, _
	horizontalAccuracy As Double, _
	verticalAccuracy As Double, _
	speed As Double, _
	course As Double _
)
Parameters
latitude (Double)
The latitude of the location. May range from -90.0 to 90.0.
longitude (Double)
The longitude of the location. May range from -180.0 to 180.0.
altitude (Double)
The altitude in meters. May be negative, 0, positive, or NaN, if unknown.
horizontalAccuracy (Double)
The accuracy of the latitude/longitude coordinates, in meters. Must be greater than or equal to 0. If a value of 0 is supplied to this constructor, the HorizontalAccuracy property will be set to NaN.
verticalAccuracy (Double)
The accuracy of the altitude, in meters. Must be greater than or equal to 0. If a value of 0 is supplied to this constructor, the VerticalAccuracy property will be set to NaN.
speed (Double)
The speed measured in meters per second. May be negative, 0, positive, or NaN, if unknown. A negative speed can indicate moving in reverse.
course (Double)
The direction of travel, rather than orientation. This parameter is measured in degrees relative to true north. Must range from 0 to 360.0, or be NaN.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionlatitude, longitude, horizontalAccuracy, verticalAccuracy or course is out of range.

Assembly: InTheHand.Device (Module: InTheHand.Device) Version: 7.0.0.0