User Location
Overview
The User Location component captures and displays the current location of the user.
Configuration Inputs
Hide Map
If set to true, the map is hidden. This allows for the location to be captured unobtrusively.
Type |
---|
Boolean |
Auto Next
"If set to true, the flow automatically advances to the next step when the user's location is determined."
Type |
---|
Boolean |
Configuration Outputs
Latitude
The latitude of the user's location.
Type | Variable Name |
---|---|
Text | latitude |
The latitude
output is of the variable type Text. This is by design as the Flow framework rounds decimal numbers to 3 decimal places. Three decimal places is not accurate enough for location data. A Text value maintains the decimal precision required for accurate data. Use a Flow Formula Variable that wraps the latitude variable in VALUE()
to convert it to a number when mapping the value to a record field for insert or update.
Longitude
The longitude of the user's location.
Type | Variable Name |
---|---|
Text | longitude |
The longitude
output is of the variable type Text. This is by design as the Flow framework rounds decimal numbers to 3 decimal places. Three decimal places is not accurate enough for location data. A Text value maintains the decimal precision required for accurate data. Use a Flow Formula Variable that wraps the longitude variable in VALUE()
to convert it to a number when mapping the value to a record field for insert or update.
Location Accuracy (Meters)
The accuracy of the location in meters.
Type | Variable Name |
---|---|
Number | locationAccuracyMeters |
Location Accuracy (Feet)
The accuracy of the location in feet.
Type | Variable Name |
---|---|
Number | locationAccuracyFeet |
Heading
The directional heading of the user. This may be blank for some devices.
Type | Variable Name |
---|---|
Number | heading |
Speed (MPH)
The speed of the user in miles per hour. This may be blank for some devices.
Type | Variable Name |
---|---|
Number | heading |
Speed (KPH)
The speed of the user in kilometers per hour. This may be blank for some devices.
Type | Variable Name |
---|---|
Number | heading |