Navigation
A question of type navigation allows the user to pick an address from a dropdown and navigate to that address using the navigation app on the device.
The list of addresses are provided in the addresses array inside the options of the first and only answer.
{
"id": 0,
"key": "navigation",
"label": "Navigate to a address",
"required": true,
"type": "navigation",
"answers": [
{
"id": 0,
"nextQuestionId": 1,
"options": {
"addresses": [
{
"id": "a8665ffc-9dcf-4f1f-bac2-e9948180db42",
"name": "FleetGO Barneveld",
"street": "Anthonie Fokkerstraat",
"houseNumber": "43A",
"postCode": "3771MP",
"city": "Barneveld",
"country": "NL",
"latitude": 0.0,
"longitude": 0.0
},
{
"id": "d914af78-717b-40e1-91ad-4156a54bafa6",
"name": "FleetGO Barneveld 2",
"street": "Anthonie Fokkerstraat",
"houseNumber": "43A",
"postCode": "3771MP",
"city": "Barneveld",
"country": "NL",
"latitude": 52.0,
"longitude": 4.0
}
]
}
}
]
}
Answer Options
This chapter describes the option possibilities for an answer.
Name | Type | Description | Required | Default |
|---|---|---|---|---|
name | string | The name | true | |
street | string | The street name | true | |
houseNumber | string | The hosue number | true | |
postCode | string | The postal code | true | |
city | string | The city of the address. | true | |
country | string | The country of the address. | true | |
latitude | string | The latitude of the address. | true | |
longitude | string | The longitude of the address. | true |
Examples
navigation example
{
"id": 0,
"key": "navigation",
"label": "Navigate to a address",
"required": true,
"type": "navigation",
"answers": [
{
"id": 0,
"nextQuestionId": 1,
"options": {
"addresses": [
{
"id": "a8665ffc-9dcf-4f1f-bac2-e9948180db42",
"name": "FleetGO Barneveld",
"street": "Anthonie Fokkerstraat",
"houseNumber": "43A",
"postCode": "3771MP",
"city": "Barneveld",
"country": "NL",
"latitude": 0.0,
"longitude": 0.0
},
{
"id": "d914af78-717b-40e1-91ad-4156a54bafa6",
"name": "FleetGO Barneveld 2",
"street": "Anthonie Fokkerstraat",
"houseNumber": "43A",
"postCode": "3771MP",
"city": "Barneveld",
"country": "NL",
"latitude": 52.0,
"longitude": 4.0
}
]
}
}
]
}
Last modified: 30 October 2025
