Reputation: 55
I need a .MBTiles file to store an android tablet.
How do I download .MBTiles (Project / Data) from my Mapbox account?
See: https://i.sstatic.net/IRisc.gif
Upvotes: 4
Views: 3639
Reputation: 11
From the URL that @geografa shared, you can figure out the pattern to download any tileset if you've got the account name and the tileset id.
https://api.mapbox.com/v3/{account}.{tileset_id}.mbtiles
This works for all of my own tilesets that I tested.
Upvotes: 1
Reputation: 701
Download tilesets using the tileset web service:
http://api.tiles.mapbox.com/v3/{account}/tilesets.json
You'll see a JSON list of data where you can download the MBTiles.
Upvotes: 4