Exploring MapBox Tile Maps and Data
MapBox is amazing. I love looking around at all their tile maps, examples, and browsing through various geographical data visualizations. I also like how their solutions works, their API, and other things like TileMill and Wax, so this post is going to explore some interesting vector tiles from MapBox and various interesting maps.
Let’s start with a quick demo I put together that explores various MapBox tiles. All of them show New Your City but you can zoom out to explore how these tiles and maps look on a world level. If you open up the console and look at the network tab, you can see a JSON file being retrieved for each of these tile sets. The comic looking map (examples.bc17bb2a), for example, loads the following JSON file. It gives you some information about the tile set like the URLs for tiles that you could use to load these tiles in other slippy maps like LeafLet or OpenLayers.
If you take a look at the JSON file for the Natural Earth map, it actually gives you a download url where you can download the whole tile set in MBtiles format. After downloading, you could use tilestream, tilestache, or even a php tile server to serve these tiles from your own servers.
Consider the MapBox Streets Example and it’s JSON file. Here you get a URL to a geocode service:
http://a.tiles.mapbox.com/v3/examples.map-vyofok3q/geocode/{query}.jsonp
What happens when you start running queries on that? Check out the results for this geocode request for the country Spain:
http://a.tiles.mapbox.com/v3/examples.map-vyofok3q/geocode/spain.json
The result gives you country geo bounds and population. How about a city like San Diego?
http://a.tiles.mapbox.com/v3/examples.map-vyofok3q/geocode/san%20diego.json
Now you get a bunch of results, as San Diego is a city in multiple countries, and you get a response with the same information for not only the city, but the state/province it belongs to and the country. It’s pretty awesome. How about some interesting maps with data and map collections by various people and companies:
Interesting MapBox Maps
- Subway Map of NYC
- Locations of top 1 million sites by pingdom.com
- World presence of OCHA
- Percentage of Mormons per County
- Puerto Rican Population by County
- Pirate Map
- Marriage Rate per State
I also like my UNESCO World Heritage Sites Map but instead of listing these maps one by one, check out these map collections:
Great MapBox Map Collections
- MapBox Maps by MapBox
- MapBox Maps by National Park Service
- MapBox Maps by Slate Magazine
- MapBox Maps by Federal Communications Commission
- MapBox Maps by ModiLabs
- MapBox Maps by Development Seed
- MapBox Maps by Stamen Design
- MapBox Maps by StreetEasy
- MapBox Maps by Amnesty
- MapBox Maps by Nate
- MapBox Maps by GeoSprocket
- MapBox Maps by Occupy
- MapBox Maps by AJ Ashton
- MapBox Maps by Dave Cole
- MapBox Maps by Bobby Sudekum
- MapBox Maps by Matt Dance
- MapBox Maps by Justin Miller
- MapBox Maps by Alex Barth
- MapBox Maps by Saman Bemel Benrud
- MapBox Maps by pewresearch
- MapBox Maps by Chris Herwig
- MapBox Maps by nypllabs
Ok, I’m done. Hope this helps someone and thanks MapBox for the great stuff!