4

I need a .MBTiles file to store an android tablet.

How do I download .MBTiles (Project / Data) from my Mapbox account?

See: https://i.stack.imgur.com/IRisc.gif

brunopacola
  • 55
  • 2
  • 4

2 Answers2

4

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.

geografa
  • 701
  • 5
  • 9
1

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.

almccon
  • 11
  • 2