Brandon Liu

Results 553 comments of Brandon Liu

In thinking about the "control plane" for the style library, the parameters are basically 1) light/dark/monochrome mode 2) nolabels layers, labels layers (for sandwiches), or labels-only (for overlays) 3) localized...

@cboone @wipfli did you also increase the internal GPU texture size to use 48pt glyphs? https://github.com/maplibre/maplibre-gl-js/blob/36dc43bc5cbe5e3de6899d7b371ad9cee9fc7a78/src/symbol/quads.ts#L277 That should have the most dramatic effect on font sharpness, but it may just...

Like maxzoom-only extracts: if we end up with less chunks than there are threads, we should split the chunks into equal-sized parts = the number of threads.

Closing for now until we have `sync`

Yes, same as flatgeobuf, parquet or video files, there is no extra space left in the file.

the command would be something like `pmtiles metadata FILE.pmtiles --write metadata.json` where you provide whatever metadata.json you need. ``` pmtiles show --metadata FILE.pmtiles > metadata.json pmtiles metadata FILE.pmtiles --write metadata.json...

an open question is whether we ever want to expose the ability to modify the header (non-metadata parts) - I guess if you accidentally set the wrong bounds or tile...

Step one is making `pmtiles show --metadata FILE` write just the raw JSON to stdout: https://github.com/protomaps/go-pmtiles/pull/98

Yeah I would say use the `sqlite3` CLI to modify the MBTiles. there's no equivalent with the pmtiles CLI yet.

Needing this now, currently plan: `pmtiles show foo.pmtiles --header-json > header.json` Writes a JSON representation of the non-offset parts of the header to a file. `pmtiles show foo.pmtiles --metadata >...