Questions tagged [mbtiles]

MBTiles is a file format for storing map tiles in a single file. It is, technically, a SQLite database. Latest format version as of February 2018 is 1.3.

Tile based web maps are made up of millions of tiles. Imagine loading all of those tiles; it would be inefficient and slow. That’s where MBTiles comes in. The MBTiles specification is an efficient format for storing millions of tiles in a single SQLite database.

SQLite is ideal for serving tiles on the web or displaying directly on mobile devices because it’s used on so many platforms. If you’ve worked with SQL databases before, SQLite should feel very familiar. With SQLite, each database is self-contained and represented as a single .sqlite file. There’s no external setup required. You can copy a .sqlite file from desktop to a mobile device and have all its rows, tables, and indexes ready to be used. It’s a portable, single-file solution for storing and serving web maps.

MBTiles takes advantage of utilities found in SQLite for solving problems like duplicate imagery. Maps that cover large areas of solid color like ocean or empty land can contain thousands of duplicate, redundant tiles.

For more

http://wiki.openstreetmap.org/wiki/MBTiles

https://www.mapbox.com/help/an-open-platform/#mbtiles-in-action

169 questions
-1
votes
1 answer

how to avoid polygon being clipped with tileset?

I am generating a layer UK scale, it is composed for several polygons, the idea for the layer is to display it fully and then the user can zoom to most specific area. The main problem is because the number of polygons when I create the .mbtile it…
gcj
  • 280
  • 2
  • 12
-1
votes
1 answer

how to add map box tiles to gmap?

I want to get map box tiles from database but it does not work. I get MBTilesMapProvider class from here. It is invoked like below: map.Manager.Mode = AccessMode.ServerAndCache; map.MapProvider = new …
-1
votes
2 answers

Mapbox - invalid tile order

I am working on my own tile server. I have weird problems with displaying tiles in the correct order. Tiles were created using OSM data. When I use tileserver-gl-light as a tiles server everything seems to be ok, but when I try to serve tiles by my…
Marek Marczak
  • 532
  • 8
  • 14
-1
votes
1 answer

Tilemill / MBTiles - Add watermark

Is there any way to add a water mark to every tile using Tilemill? I would like to put my company name in small transparent writing in the bottom right hand corner of every tile. I'm exporting as MBTiles and using them in my android…
Gyroscope
  • 3,121
  • 4
  • 26
  • 33
1 2 3
11
12