Trip Interface Description 1.2.2 Help

Navigate

A question of type navigate allows the user to pick an address from a list and navigate to that address using the using a navigation app on the device that listens to a geo intent.

Every address is defined as a separate answer in the question's answers array. The property value contains the lat. and long. coordinates of the address, which are used to create the query string for the navigation app.

{ "id": 0, "key": "navigate", "label": "Navigate to a address", "required": true, "type": "navigate", "answers": [ { "id": 0, "label": "FleetGo \nLindenhof 1\n8051 DD Hattem", "nextQuestionId": -1, "value": "52.474312,6.069690" }, { "id": 1, "label": "FleetGO Barneveld\nAnthonie Fokkerstraat 43a\n3772 MP Barneveld", "nextQuestionId": -1, "value": "52.140469,5.583520" } ] }

Answer

Name

Type

Description

Required

id

int

The id of the question.

true

nextQuestionId

int

The id of the next question to be shown after this question.

true

label

string

The address label, see the example below for more details.

true

value

string

The value is used to create the query string for the navigation app.

The value is a string with the following format:

latitude,longitude

true

Answer Options

This chapter describes the option possibilities for an answer.

There are currently no answer options for this question.

Examples

Navigate example

A example image for question question_navigate
{ "id": 0, "key": "navigate", "label": "Navigate to a address", "required": true, "type": "navigate", "answers": [ { "id": 0, "label": "FleetGo \nLindenhof 1\n8051 DD Hattem", "nextQuestionId": -1, "value": "52.474312,6.069690" }, { "id": 1, "label": "FleetGO Barneveld\nAnthonie Fokkerstraat 43a\n3772 MP Barneveld", "nextQuestionId": -1, "value": "52.140469,5.583520" } ] }
Last modified: 17 July 2025