When people travel, they often miss out on fascinating landmarks or local points of interest, or they simply wish they’d known more about them beforehand. Our app fixes that by tracking every noteworthy spot along your route and providing you with a deep dive into its history. Whether it’s a well-known sight or a hidden gem, we’ll make sure you’re fully immersed in the story behind it—so you can get the most out of your journey, every step of the way.
- Route Calculation: Input a starting location and destination to compute the optimal route.
- Points of Interest Display: View notable locations along the route with relevant details.
- Audio Playback: Listen to descriptions of select POIs (Points of Interest).
- Interactive Map: Visual representation of routes and POIs using a mapping service.
- Responsive Design: Optimized for various devices and screen sizes.
- Frontend Framework: Next.js with TypeScript
- Styling: Tailwind CSS
- Mapping Library: Google Maps API
- API Integration: Flask
- Add the start and end destination, view some point of interests on the map:
- Choose which landmarks/point of interests you want to learn more about
- Have full control of the audio description
- Add the start and end destination, view some point of interests on the map:
- Choose the landmark/point of interest you are interested in
- Have full control of the audio description in mobile
- Node.js (23.x)
- API key for google map
- Visual Studio Code
-
Clone the repository:
git clone https://github.com/{YourUserName}/POINT.git cd POINT
-
Install dependencies & build:
npm install npm run build
-
Set up environment variables:
Create a
.env.local
file in the project root with the following variables:NEXT_PUBLIC_GOOGLE_MAPS_API_KEY=xxxxx
-
Run the development server:
npm run dev
The application will be available at
http://localhost:3000/
. -
Run the backend server locally:
The repo is available at: BuildathonBackend
The frontend interacts with the backend Flask API to fetch server health, route details, and the audio file.
-
Endpoint:
/health
-
Method:
GET
-
Response:
{ "status": "healthy" }
-
Endpoint:
/get-location-info
-
Method:
GET
-
Query Parameters:
place
: Name of the location (e.g.,?place=Flatiron
)
-
Response:
{ "place": "Flatiron", "description": "Now approaching the Flatiron Building, an iconic triangular skyscraper..." }
- Endpoint:
/get-location-audio
- Method:
GET
- Query Parameters:
place
: Name of the location (e.g.,?place=Flatiron
)
- Response: Returns an MP3 file for audio playback.
-
Build the project:
npm run build
-
Start the production server:
npm start