IUserAccessiableCreateCoords Method (Int32, Int32, Double, Int32, Int32, Double) |
Use to create a GPS location.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax ISimpleCoordinates CreateCoords(
int inLatDegrees,
int inLatMinutes,
double inLatSeconds,
int inLongDegrees,
int inLongMinutes,
double inLongSeconds
)
Parameters
- inLatDegrees
- Type: SystemInt32
Latitude Degrees - inLatMinutes
- Type: SystemInt32
Latitude Minutes - inLatSeconds
- Type: SystemDouble
Latitude Seconds - inLongDegrees
- Type: SystemInt32
Longitude Degrees - inLongMinutes
- Type: SystemInt32
Longitude Minutes - inLongSeconds
- Type: SystemDouble
Longitude Seconds
Return Value
Type:
ISimpleCoordinatesExamples Gets latitude and longitude and returns a gps location (ISimpleCoordinates object), for example:
CreateCoordinates(15, 43,3.35,2,7,23.4);
will create a gps location with these coordinates and further information.
See Also