-
I'd like to produce a small ~30MB pmtiles file that contains z0-z9 tiles for the whole county of Finland, and z10-z14 tiles that are a few km in distance from a dozen of POIs. Is this possible with mere configuration? My fallback would be to produce a normal z0-z9 pmtiles file, and a second file for z10-14 for polygons around my POIs. I assume this can be done with a polygon file where you include multiple areas in one .poly file, one for each POI interest bound? The use case is where the user needs to see detail around the POI, practically how to navigate around the POI, but also on the same map see where the POI is in relation to cities and roads, available at z9. A whole country z0-z14 pmfiles file is around 800MB, which is too large for some of the tools in the workflow. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
That would make a great feature! |
Beta Was this translation helpful? Give feedback.
I like that approach, or we could also have a way to list bounding boxes or poly/geojson files with a max zoom like
--bounds=world<=3;10,20,30,40<=10;pois.geojson<15
to have full planet tiles up to z3, tiles within bounding box 10,20,30,40 up to z10, and around pois.geojson up to z14 ? That would also resolve #133I would say if a maxzoom is missing, then max maxzoom (z14/15) would be implied.