Click or drag to resize
IUserAccessiableCreateCoords Method (Double, Double, String)
Use to create a GPS location.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
ISimpleCoordinates CreateCoords(
	double inLatitude,
	double inLongitude,
	string inAddress
)

Parameters

inLatitude
Type: SystemDouble
Latitude
inLongitude
Type: SystemDouble
Longitude
inAddress
Type: SystemString

Return Value

Type: ISimpleCoordinates
Examples
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