IUserAccessiableCreateCoords Method (Int32, Int32, Double, Int32, Int32, Double, String) |
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,
string inAddress
)
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 - inAddress
- Type: SystemString
Return Value
Type:
ISimpleCoordinatesExamples Gets latitude and longitude and returns a gps location (ISimpleCoordinates object), for example:
CreateCoordinates(15, 43, 13.4,23,42, 13.54,”gaga street”);
will create a GPS location with these coordinates and further information.
See Also