Difficulty: Moderate
Add the ability to search location history:
CLI:
location-tracker search "coffee shop" --days 30
location-tracker search --near 32.745,-117.155 --radius 100m
Dashboard: Add a search bar above the timeline that filters markers/path by address text match.
Where to look:
- `db.py` — add `search_locations(query, days, near_lat, near_lon, radius)`
- `main.py` — add `search` subcommand
- `static/app.js` — add search input and filter logic
Difficulty: Moderate
Add the ability to search location history:
CLI:
location-tracker search "coffee shop" --days 30 location-tracker search --near 32.745,-117.155 --radius 100mDashboard: Add a search bar above the timeline that filters markers/path by address text match.
Where to look: