-
-
Notifications
You must be signed in to change notification settings - Fork 226
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
PG TileJSON changes, add vector_layers #584
Conversation
Codecov ReportBase: 59.13% // Head: 59.19% // Increases project coverage by
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## main #584 +/- ##
==========================================
+ Coverage 59.13% 59.19% +0.05%
==========================================
Files 30 30
Lines 2736 2747 +11
==========================================
+ Hits 1618 1626 +8
- Misses 1118 1121 +3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Thank you for such fast implementation! My 5 cents: I do not know the reason of The only value I need is what to put after First, it is not clear if martin makes them automatically unique. For example, if I have table If this is for developer to know how the data is retrieved (e.g. developer have So, my minimal [
{
"id":"points", // <-- THIS is URL slug
"content_type":"application/x-protobuf"
},
{
"id":"polygons", // <-- THIS is URL slug
"content_type":"application/x-protobuf"
}
]
My favorite tilejson like: {
"tilejson":"3.0.0",
"tiles":[
"https://example.com/source_points/{z}/{x}/{y}"
],
"bounds":[],
"vector_layers": [] // <-- HERE we know source-layer value for map SDK
"maxzoom":30,
"minzoom":14
} We can add to tilejson Source layer id inside Source layer id should be unique as far as I know inside source only, and the table source can't have multiple source layers (isn't it?) tilejson can contain some In conclusion: I would remove name, make description user-friendly and not system-like, and use only ids: ids are the same as slug URL, PS BTW congrats to maplibre on hosting such great tool, and congrats to martin on the new attention it deserved 🙌 |
i removed the dup Lines 71 to 75 in 6a55956
|
definitly, thx! |
fixed |
And what is the reason of |
TileJSON does not define |
Oooh. I see. Thanks. Maybe |
For example, |
well, if it is called I'm not sure where to add info about source ID uniqueness to the readme - suggestions welcome. |
It would be nice to describe all possible keys from catalog item json here: https://github.com/maplibre/martin#source-list If I understood you correctly and |
name and id are not the same. TileJSON is a way to describe a tile source. Name comes from the source. ID on the other hand is the slug used in the URL - its a concept that Martin has. ID is configured by the Martin server's configuration. Multiple IDs can exist for the same source. The name could be the same as the source ID, but could be different - e.g. see one of the mbtiles tests: {
"id": "geography-class-png-no-bounds",
"content_type": "image/png",
"name": "Geography Class",
"description": "One of the example maps that comes with TileMill - a bright & colorful world map that blends retro and high-tech with its folded paper texture and interactive flag tooltips. "
}, |
Thank you for clarification. Would be nice to have this information in README 🙏 |
PRs for the readme are more than welcome :)))))) or just post here what text you want to see where, and i can add it to the pr and clean up the language |
Do not know if you want to have russian/ukranian-styled english in README 🥲 |
improving bad style english is far easier than to write new content from scratch ;) |
Do not know is it true, maybe these parts should also use source_id: And this one? I think the one too: It is table names for auto scan, but does not always table names if you use config or tables are duplicated. IMHO it is better to say source_id, which is by default table name, but can be changed in config or incrimented while duplicate (this part is present in readme)As far as I know martin will take I can try to fix it too if this is true. |
yes, i think those should be modified - could you maybe start a new PR for that? You don't even need to clone it, can use the github's built-in editor for the readme. In some cases Thanks! |
@@ -170,7 +170,7 @@ async fn get_catalog(state: Data<AppState>) -> impl Responder { | |||
id: id.clone(), | |||
content_type: info.format.content_type().to_string(), | |||
content_encoding: info.encoding.content_encoding().map(ToString::to_string), | |||
name: tilejson.name, | |||
name: tilejson.name.filter(|v| v != id), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's that filter for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hides the name
from the output if it is identical to the ID
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
We had two metadata fields in the mbtiles metadata that were not officially supported by tilejson, so removed the generator to keep ordering simpler.
name
be the same as the ID of the source (even if aliased)/catalog
will always show ID, but now it will hide thename
if it is the same as theid
description
be the longer version, e.g.public.table.column
format - not guaranteed to be stablevector_layers
have the fields auto-discovered in the PG tableFixes #583