CreateCoords

object CreateCoords(double inLatitude, double inLongitude)

Description

Use to create a GPS location 

Parameters

The following is a list of parameters the functions receives 

Parameter Type Description
inLatitude double latitude value
inLongitude double longitude value

Return Type

object

Overloads

List of overloads for this function

object CreateCoords(double inLatitude, double inLongitude, string inAddress)
object CreateCoords(Int32 inLatDegrees, Int32 inLatMinutes, double inLatSeconds, Int32 inLongDegrees, Int32 inLongMinutes, double inLongSeconds)
object CreateCoords(Int32 inLatDegrees, Int32 inLatMinutes, double inLatSeconds, Int32 inLongDegrees, Int32 inLongMinutes, double inLongSeconds, string inAddress)

Parameters for overloads:

Parameter Type Description
inLatitude double latitude value
inLongitude double longitude value
inAddress string Name for the coordinates
inLatDegrees Int32 Degrees Value for Latitude
inLatMinutes Int32 Minutes Value for Latitude
inLatSeconds double Seconds value for Latitude
inLongDegrees Int32 Degrees Value for Longitude
inLongMinutes Int32 Minutes Value for Longitude
inLongSeconds double Seconds value for Longitude

 

Examples

CreateCoords(15.678678, 43.7238);
CreateCoords(15.678678, 43.7238, “name of the address”);
CreateCoords(15, 43,3.35,2,7,23.4);
CreateCoords(15, 43, 13.4,23,42, 13.54,”gaga street”);
Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.