I use tippecanoe to convert geojson file to pbf tiles using this command
tippecanoe -e output_dir -zg -Z10 --drop-densest-as-needed --no-tile-compression --extend-zooms-if-still-dropping -l features files.geojson I have another set of tiles that I want to merge the output_dir with,
tile-join -o merged_file.mbtiles --layer=features --no-tile-size-limit --no-tile-compression local_gcs_tiles_dir/ output_dir/ I convert the .mbtiles convert back to pbf tiles using mbutil
mbutil/mb-util --image_format=pbf merged_file.mbtiles output_merged_dir The new tiles that are generated are available at all zoom levels, but the old tiles are only available at lower zoom levels.
How can I have the older tiles at all zoom levels?