Serving vector tiles
See original GitHub issueInstead of {z}/{x}/{y}.png
I’d like {z}/{x}/{y}.pbf
I’ve generated something before like this:
tippecanoe -Q --no-tile-compression --no-tile-size-limit --minimum-zoom=7 --maximum-zoom=7 --drop-rate=1 --output-to-directory=file/ file.geojson
I imagine this would be the centroids of each pixel as a vector point? Do you think this is possible?
Do GeoTiff COG overviews hinder access to the native resolution pixels of the COG? It would be nice to serve native resolution vector-tile-pixels up to a desired zoom level.
Can overview pixels be accessed explicitly? that might be interesting to experiment with for higher zoom levels than a client could easily process
somewhat related to: https://github.com/DHI-GRAS/terracotta/issues/11 <-- is this the same thing? https://github.com/DHI-GRAS/terracotta/issues/44#issuecomment-420415547
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Serving Dynamic Vector Tiles from PostGIS - Crunchy Data
Vector tiles are a transport format for efficiently sending map data from a server to a client for rendering. The vector tile specification ......
Read more >Serving Vector Tiles - Paul's Blog
Tilemaker is built around the idea of vector tiles without a serving stack. It does this by doing an in-memory conversion directly from...
Read more >Vector tile services—ArcGIS Server
A vector tile service is an ArcGIS Server web service originating from a vector tile package in ArcGIS Pro. Vector tile services (also...
Read more >Serve maps with TileServer GL - OpenMapTiles
TileServer GL supports both serving vector as well as raster tiles (through Mapbox GL Native). It is also providing a WMTS endpoint. For...
Read more >Vector tiles introduction | Tilesets - Mapbox docs
Vector tiles make huge maps fast while offering full design flexibility. ... of tiling: optimized for caching, scaling, and serving map imagery rapidly....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m not sure how much work it would be to offer vector tile output, maybe it’s not that bad since rio-tiler has already done the hard part for us 😃
That being said, I’m not quite convinced that this is a nice use case. But if you really want this and put in a PR I could imagine to merge it.
Regarding your issues:
/compute
should work well for this. There are no requirements in terms of alignment, as the computation is done on the final tile (which is always on the samexyz
grid).Not possible out of the box, but there are some tricks you can use. We’ve discussed this here.
It sounds like what you want is actually a custom colormap. The explicit format you quote is meant for categorical data, where you can match values to colors 1:1. If you want interpolation between values, you need a custom colormap.
Did this end up working for you @chapmanjacobd ?