An interactive weather map application that displays current weather conditions for various locations around the world.
├── backend/
│ └── index.ts # Hono API server
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React frontend entry point
│ └── components/
│ ├── App.tsx # Main app component
│ ├── WeatherMap.tsx # Interactive map component
│ └── WeatherCard.tsx # Weather info display
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET / - Serves the frontend applicationGET /api/weather?lat={lat}&lon={lon} - Fetches weather data for coordinatesThe application loads with a world map. Click on any location to see current weather conditions including temperature, humidity, wind speed, and weather description.