Travel tool Vue 3 No login

Route Hub

A free multi-stop trip planner that runs in the browser. Search for stops, drag to reorder, sort by proximity, and send the route to Google Maps.

Multi-stop planning should be fast on a phone.

Most mapping apps treat multi-stop planning as an edge case. Reordering stops can be awkward, especially on mobile, and purpose-built planners often ask for an account before the first route is useful.

Route Hub does one job: build a stop list, let you reorder it, then hand the final route to Google Maps for navigation.

Core behavior

Plan here. Navigate there.

Drag to reorder

Build a list of stops and rearrange them directly. The route order updates without making you re-enter places.

Proximity sort

A nearest-neighbor sort reduces obvious backtracking. It is not mathematically optimal, but it is useful for day trips.

Maps handoff

One action opens Google Maps with the full stop list as waypoints, leaving turn-by-turn navigation to the mapping app.

A small app around a stop list.

Layer Technology
FrontendVue 3 Composition API, Vite, Tailwind CSS
MapGoogle Maps JavaScript API
SearchGoogle Places Autocomplete through a Vercel proxy
Drag and dropvuedraggable
Route persistenceBrowser localStorage
HostingVercel

Route data stays local.

No account

There is no user system, login wall, or hosted route database.

Local saves

Saved routes live in the browser’s localStorage. Clearing browser data removes them.

Practical sorting

Proximity sort reduces backtracking but does not calculate a mathematically optimal route.

Build a stop list.

Open Route Hub in a mobile browser and send the route to Google Maps when it is ready.

Related paths.