Allow intermediate stops (waypoints) for Car bookings (Road Trip) #1797
Unanswered
tbard1
asked this question in
Feature Requests
Replies: 1 comment 1 reply
|
Would like to see that too. It is hard to plan a road trip atm. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Problem
The multi-leg route editor with "Add stop" currently only exists for Trains and Planes. Car bookings only expose a single departure/arrival pair via the generic location picker, with no way to insert a planned stop along the route.
This matters because Car is the one transport type that's actually routed on real roads via OSRM (Cars... follow real roads, routed on demand via a public OSRM router). A road trip is exactly the case where a driver plans waypoints — the map/route feature is there, but the UI to feed it multiple points isn't.
Current behavior
Desired behavior
Why this is low-risk to build
The endpoints data model already appears to support this generically —
role: "from" | "to" | "stop"with a sequence field exists at the API/schema level for all transport types, not just trains. This looks like a UI-only gap rather than a data-model change: the multi-leg editor component built for trains could likely be reused for Car with minimal changes, and OSRM already accepts multiple waypoints natively. The "quick pick from planned places" pattern also already exists elsewhere in the app (transit search dialog), so it's precedent, not a new interaction.Alternative I'm using today
Creating several back-to-back Car reservations (leg 1, leg 2, …) as a workaround — it works but clutters the Reservations/Transports tab and loses the "one rental, one continuous trip" semantics (e.g. a single car rental confirmation number spanning 3 days with 2 planned stops).
Additional context
Happy to test on my self-hosted instance if a beta/flag is added.
All reactions