A detailed weather application that displays comprehensive weather information for New York City on an interactive map.
├── backend/
│ └── index.ts # Main API server with weather endpoints
├── 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
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
The app displays an interactive map of New York City with weather information overlays. Click on different areas of the map to see detailed weather conditions for that location.