A web-based tool to fetch and visualize Mapillary street-level imagery within a specified bounding box.
- Interactive Map: Browse OpenStreetMap tiles with MapLibre GL JS
- Token Verification: Validate your Mapillary API access token before fetching data
- Current View Fetching: Automatically use the current map view as bounding box
- Automatic Area Adjustment: Handles Mapillary's 0.01 square degree limit with auto-adjustment
- Pagination Support: Fetches all available images across multiple API pages
- Visual Display: Shows image locations as blue circle markers on the map
- Image Preview: Click any marker to view the street-level image in a popup
- GeoJSON Export: Download all fetched data as a timestamped GeoJSON file
- Responsive Design: Works on desktop and mobile devices
- Sign up or log in at Mapillary
- Go to Mapillary Developer Dashboard
- Create a new application or use an existing one
- Copy your Client Token (format:
MLY|...|...)
- Open the application in your web browser
- Paste your Mapillary access token into the input field
- Click "Verify Token" to validate your credentials
- Pan and zoom the map to your desired area
- Click "Fetch Images in Current View" to retrieve Mapillary images
- Click on blue markers to view street-level images
- Use "Download GeoJSON" to save the data locally
- Modern web browser (Chrome, Firefox, Safari, Edge)
- Valid Mapillary API access token
- Internet connection
- MapLibre GL JS v4: Interactive map rendering
- OpenStreetMap: Base map tiles
- Mapillary API v4: Street-level imagery data
- Endpoint:
https://graph.mapillary.com/images - Authentication: OAuth token via
Authorizationheader - Bounding Box Limit: Maximum 0.01 square degrees
- Fields Retrieved:
id,computed_geometry,captured_at,compass_angle,thumb_2048_url
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [longitude, latitude]
},
"properties": {
"id": "image_id",
"captured_at": "2024-01-01T12:00:00Z",
"thumb_2048_url": "https://...",
"compass_angle": 90.5
}
}
]
}- Urban planning and analysis
- Street infrastructure mapping
- Change detection over time
- Computer vision dataset creation
- Route planning and documentation
- Research and academic projects
- Maximum bounding box area: 0.01 square degrees (~1.1km × 1.1km at equator)
- Areas larger than the limit are automatically adjusted from the center
- API rate limits apply based on your Mapillary account tier
- Requires active internet connection
Contributions are welcome! Feel free to:
- Report bugs or issues
- Suggest new features
- Submit pull requests
This project is open source and available under the MIT License.
For questions or support, please open an issue on the GitHub repository.
Made with ❤️ using MapLibre GL JS and Mapillary API