IUserAccessiableCreateCoords Method (Double, 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(
double inLatitude,
double inLongitude,
string inAddress
)
Parameters
- inLatitude
- Type: SystemDouble
Latitude - inLongitude
- Type: SystemDouble
Longitude - inAddress
- Type: SystemString
Return Value
Type:
ISimpleCoordinatesExamples Gets latitude and longitude and returns a gps
location (ISimpleCoordinates object), for example:
CreateCoordinates(15.678678, 43.7238, “name of the address”);
will create a gps location with these coordinates.
See Also