mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
24819bdb45
* BREAKING: `martin-cp` will now set `format=pbf` instead of `mvt`. This is what QGIS and possibly others expect, and this is what tools like tilelive generates. * `martin-cp` sets `minzoom` and `maxzoom` metadata values based on the zoom parameters * Add `mbtiles meta-update` command to refresh zoom levels based on the present tiles. Partially addresses items in #1081
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
---
|
|
source: mbtiles/tests/copy.rs
|
|
expression: actual_value
|
|
---
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'metadata'
|
|
sql = '''
|
|
CREATE TABLE metadata (
|
|
name text NOT NULL PRIMARY KEY,
|
|
value text)'''
|
|
values = [
|
|
'( "maxzoom", "6" )',
|
|
'( "md-edit", "value - v1" )',
|
|
'( "md-remove", "value - remove" )',
|
|
'( "md-same", "value - same" )',
|
|
'( "minzoom", "3" )',
|
|
]
|
|
|
|
[[]]
|
|
type = 'table'
|
|
tbl_name = 'tiles'
|
|
sql = '''
|
|
CREATE TABLE tiles (
|
|
zoom_level integer NOT NULL,
|
|
tile_column integer NOT NULL,
|
|
tile_row integer NOT NULL,
|
|
tile_data blob,
|
|
PRIMARY KEY(zoom_level, tile_column, tile_row))'''
|
|
values = [
|
|
'( 3, 6, 7, blob(root) )',
|
|
'( 5, 0, 0, blob(same) )',
|
|
'( 5, 0, 1, blob() )',
|
|
'( 5, 1, 1, blob(edit-v1) )',
|
|
'( 5, 1, 2, blob() )',
|
|
'( 5, 1, 3, blob(non-empty) )',
|
|
'( 5, 2, 2, blob(remove) )',
|
|
'( 5, 2, 3, blob() )',
|
|
'( 6, 0, 3, blob(same) )',
|
|
'( 6, 0, 5, blob(1-keep-1-rm) )',
|
|
'( 6, 1, 4, blob(edit-v1) )',
|
|
'( 6, 2, 6, blob(1-keep-1-rm) )',
|
|
]
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'metadata'
|
|
|
|
[[]]
|
|
type = 'index'
|
|
tbl_name = 'tiles'
|