-
I have a slightly out-of-scope use case, but I was wondering if someone here might be able to point me in the right direction. I have a tile server set up to serve vector tiles, and a client rasterizing those tiles in the browser using maplibre-gl-js (well, technically still on mapbox-gl-js, but not for long). If possible, I'd like to also be able to generate images from my vector tiles at request time on the server. This would allow me to serve both vector and raster tiles while maintaining a consistent styling. It seems like one way I might be able to accomplish this is by executing the rasterization step from mapblibre-gl-js in NodeJS, but I'm not sure if that's actually feasible. Does anyone have any pointers/thoughts? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Use tileserver-gl, it's destined to do just that. |
Beta Was this translation helpful? Give feedback.
-
Hi @dwoznicki , the server-side rasterization is a fairly well explored problem without a "perfect" solution :).
|
Beta Was this translation helpful? Give feedback.
Hi @dwoznicki , the server-side rasterization is a fairly well explored problem without a "perfect" solution :).
maplibre-native
ormaplibre-rs
in the future to support this usecase.