A Next.js application that allows users to enter an address and view it on an interactive Mapbox map.
- Clean, modern UI with Tailwind CSS
- Interactive address form
- Mapbox GL JS integration for map display
- Responsive design for desktop and mobile
- TypeScript for type safety
- Node.js (v14 or later)
- npm or yarn
- Mapbox API access token (sign up at mapbox.com)
git clone <repository-url>
cd mapbox-address-app
npm install
# or
yarn install
Create a .env.local
file in the root of the project and add your Mapbox access token:
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=your_mapbox_access_token_here
Then, update the MapComponent.tsx file to use this environment variable:
mapboxgl.accessToken = process.env.NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN || '';
npm run dev
# or
yarn dev
Open http://localhost:3000 in your browser to view the application.
src/app/page.tsx
- Home page with address formsrc/app/map/page.tsx
- Map page displaying the locationsrc/components/AddressForm.tsx
- Form component for address inputsrc/components/MapComponent.tsx
- Mapbox map component
- Users enter their address in the form on the home page
- Upon submission, they are redirected to the map page with the address as a query parameter
- The map page displays the address on an interactive Mapbox map
- Add geocoding to convert addresses to coordinates
- Save recent addresses
- Add route planning functionality
- Implement location sharing
MIT
This project uses Next.js and Mapbox GL JS.