No description
Find a file
2026-06-29 08:00:56 +00:00
.gitignore Secred in separate file, desing improvements 2026-06-29 07:58:28 +00:00
app.js Secred in separate file, desing improvements 2026-06-29 07:58:28 +00:00
config.example.js Desing and config.examle.js 2026-06-29 08:00:56 +00:00
index.html Secred in separate file, desing improvements 2026-06-29 07:58:28 +00:00
README.md Secred in separate file, desing improvements 2026-06-29 07:58:28 +00:00
styles.css Desing and config.examle.js 2026-06-29 08:00:56 +00:00

Routes

A small static webpage for saving and sharing Google Maps route links.

Features

  • Add routes with name and Google Maps link (mandatory)
  • Optional date, description, and uploaded picture
  • Click route names to open saved Google Maps links
  • Edit, remove, share, or copy route links
  • Data is stored locally in the browser with localStorage
  • Simple secret gate before the app opens

Open index.html in a browser to use it.

Secret

Create config.js from the example and set your secret there:

cp config.example.js config.js
window.ROUTES_SECRET = "your-secret";

config.js is gitignored. This is a simple client-side gate, not strong server-side security.