diff --git a/print.html b/print.html index 25660c85f..ceabf29ff 100644 --- a/print.html +++ b/print.html @@ -970,7 +970,18 @@
.mbtiles
files with normalized
schema can include a tiles_with_hash
view:
+CREATE VIEW tiles_with_hash AS
+ SELECT
+ map.zoom_level AS zoom_level,
+ map.tile_column AS tile_column,
+ map.tile_row AS tile_row,
+ images.tile_data AS tile_data,
+ images.tile_id AS tile_hash
+ FROM map
+ JOIN images ON images.tile_id = map.tile_id;
+
+Note: All normalized
files created by the mbtiles
tool will contain this view.
For more general spec information, see here.
.mbtiles
files with normalized
schema can include a tiles_with_hash
view:
+CREATE VIEW tiles_with_hash AS
+ SELECT
+ map.zoom_level AS zoom_level,
+ map.tile_column AS tile_column,
+ map.tile_row AS tile_row,
+ images.tile_data AS tile_data,
+ images.tile_id AS tile_hash
+ FROM map
+ JOIN images ON images.tile_id = map.tile_id;
+
+Note: All normalized
files created by the mbtiles
tool will contain this view.
For more general spec information, see here.