A via point in the waypoint between origin and destination from where a traveler wants to go through.
Format: IndoorMapWaypointParameter
Which consist of
- Coordinates:
lat,lng
- Indoor map id:
indoorMapId string, id of the HERE indoor map
- Level (floor) id :
levelId string, id of the level in the HERE indoor map
- Query parameter for via as
{lat},{lng};indoorMapId={indoorMapId};levelId={levelId}
Supported place options:
indoorMapId: string, id of the HERE indoor map
levelId: string, id of the level in the HERE indoor map
Supported waypoint options:
stopDuration: desired duration for the stop, in seconds. The section arriving at this
via waypoint will have a wait post action reflecting the stopping time. Must be less than 50000.
passThrough: boolean. Controls waypoint behavior during route calculation:
passThrough=false (default) : The route will stop at the via waypoint, creating a new route section.
passThrough=true : The route will pass through the via waypoint without stopping.
- Introducing a stop at the waypoint.
- Splitting the route into sections.
- Changing the direction of travel.
Following scenarios are not supported for passThrough parameter:
- Setting both
stopDuration to a value greater than 0 and passThrough=true.
- Setting
passThrough=true for origin or destination of a route.
- Query parameter for via with waypoint options as
{lat},{lng};indoorMapId={indoorMapId};levelId={levelId}!passThrough=false!stopDuration=30