-
-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multi-layer tiles #36
Comments
Thanks for posting this, @robert-claypool! It's planned to support multi-layered table sources and that's exactly the way I imagined that! I would gladly review PR for this. |
Priorities at work have changed, and so it looks like I won't be working on this for the foreseeable future. |
No problem, I'll keep this issue open and implement this in future releases. |
I need this feature for an August deadline. @fielda will sponsor the work and open source it, please contact me if interested (email address is in my GitHub profile). |
Hi @robert-claypool! Thanks for your patience. I've made experimental support for composite sources in #107 You can now compose table sources by listing the tables separated by a comma:
Could you please try this docker image with composite sources support and give any feedback on this?
|
This looks like it can be closed now. Thanks for the work, everyone. |
I would like your thoughts on how to generate multi-layer tiles.
My idea is to allow requests like
/{schema_name}.{table_name},{schema_name}.{table_name}/{z}/{x}/{y}.pbf
and use binary concatenation ofST_AsMVT
statements to produce the tile, see https://postgis.net/docs/ST_AsMVT.htmlI believe the only way to do this now is via function source, for example:
I have never developed in Rust, but Martin's codebase is so clean I could probably make these changes and issue a decent PR. What do you think?
The text was updated successfully, but these errors were encountered: