3

I have generated mbtiles for different sub regions of USA map from openMapTiles. Now, I wanted to merge all the generated mbTiles files together. What's the better way to do this?

Thanks!

Sandhya3478
  • 47
  • 2
  • 10

1 Answers1

11

Once you have tile-join ( https://github.com/mapbox/tippecanoe ) tool, it should be easy. I am just patching version so it is easy to reuse same styles right away (for klokantech/tileserver-gl)

so my mixing script now : rm mix.mbtiles tile-join -o mix.mbtiles *.mbtiles sqlite3 mix.mbtiles 'UPDATE "main"."metadata" SET value="3.8" where name ="version";`

PetrV
  • 1,368
  • 2
  • 15
  • 30