CONCEPT Cited by 1 source
Virtual waypoint routing¶
Definition¶
Virtual waypoint routing is the practice of inserting an invisible intermediate stop into a navigation route — not because the route is meaningfully different with the stop, but because having a waypoint at that location gives the app a precise, predictable moment in the driver's journey to trigger behaviour hooked to reaching that point.
A "virtual" waypoint differs from a real stop in that:
- The driver does not notice it as a stop — they pass through it.
- The map may not render it.
- Its purpose is inter-system coordination (routing signals UX) rather than navigation per se.
Canonical instance — Lyft gate waypoint¶
In the 2026-04-23 Lyft write-up, the Routing team inserts the gate itself as an arbitrary intermediate stop between driver (A) and rider (B) for gated-community pickups:
"For gated communities, our Routing team introduced a new 'detour': the gate itself becomes an intermediate stop, an arbitrary, 'invisible' stop that the driver passes through on the way to the rider. (…) This seemingly small routing tweak creates something valuable: a precise moment in the driver's journey where we can surface gate instructions at exactly the right time."
The waypoint's routing value is secondary — it mostly preserves the same turn-by-turn. Its UX-timing value is primary — the app can now subscribe to "driver approaching gate waypoint" as an event and surface a gate-instruction banner on the navigation screen precisely when actionable, not before. See concepts/timing-based-information-surfacing.
Why this shape matters¶
Most in-app notifications have no natural timing anchor — they're keyed to trip-state transitions (matched, picked up, dropped off) which are coarse and often mis-timed. A virtual waypoint gives the product designer a custom, trip-specific anchor between those coarse states. This is a general technique — anywhere you can insert a waypoint you can trigger UX. Obvious candidates beyond gates:
- Construction-closure bypass points — surface a "route changed" banner as the driver reaches the detour turn.
- Unsafe-curb detours — surface the explanation of the detour as the driver reaches the corrected spot.
- Venues with managed entrances — surface lane/gate guidance at the venue approach.
Seen in¶
- sources/2026-04-23-lyft-smarter-pickup-experience-for-gated-communities — first wiki instance.
Related¶
- concepts/timing-based-information-surfacing — the purpose the virtual waypoint serves.
- patterns/intermediate-waypoint-for-context-surfacing — the implementing pattern.
- systems/lyft-pickup-routing — the canonical deployment.
- concepts/gated-community-pickup — the canonical use case.
- companies/lyft.