You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goal:
At lower zoom levels (e.g., zoom levels 0-4), I want to display countries using highly simplified geometries to ensure that the tiles are very small in size.
At higher zoom levels (e.g., zoom levels 5 and above), I want to progressively include more detailed geometry, eventually using the full detail available in the source data.
Could you please provide guidance on how to set up Tippecanoe to achieve these goals? Any specific commands or examples would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
to create highly simplified, low-resolution tiles at lower zoom levels, while retaining full detail and normal simplification at maxzoom.
The --no-simplification-of-shared-nodes and --no-tiny-polygon-reduction options are to reduce the artifacts that would otherwise be visible in oversimplified and low-resolution tiles, respectively.
The problem now is that there are a lot of small polygons. For zoom level 0, these are not relevant, they just increase tile size.
My goal now is to remove the small polygons based on size at low zoom levels. I successfully used --drop-smallest-as-needed along with --maximum-tile-bytes=20000 to filter out small polygons at zoom level 0. However, I would like to remove polygons below a certain polygon size threshold (e.g., less than 4 pixels) across different zoom levels, not just based on tile size.
I have tried to use --drop-polygons -r 1.6 but, it seems to remove large polygons, not small ones.
Could you advise on how to effectively remove these small polygons?
Goal:
At lower zoom levels (e.g., zoom levels 0-4), I want to display countries using highly simplified geometries to ensure that the tiles are very small in size.
At higher zoom levels (e.g., zoom levels 5 and above), I want to progressively include more detailed geometry, eventually using the full detail available in the source data.
Could you please provide guidance on how to set up Tippecanoe to achieve these goals? Any specific commands or examples would be greatly appreciated.
The text was updated successfully, but these errors were encountered: