Skip to content
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

Fix rendering for icon-text-fit + data-driven text-size #5632

Merged
merged 1 commit into from
Nov 13, 2017
Merged

Conversation

jfirebaugh
Copy link
Contributor

Fixes #5631.

},
"icon-image": "label",
"icon-text-fit": "both",
"icon-ignore-placement": true,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure why icon-ignore-placement and icon-allow-overlap were needed here, because the two symbols don't appear to collide. But without them, only "A" shows up. Might be another bug lurking here.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it looks like there is a bug -- the icons have collision boxes that are much bigger than the text:

screenshot 2017-11-08 17 27 30

I'll look into that tomorrow.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ticketed that issue as #5641.

Copy link
Contributor

@ChrisLoer ChrisLoer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me, but it might be a good idea to get @anandthakker to glance at it too?

@@ -71,7 +71,7 @@ function getIconQuads(anchor: Anchor,
if (layout['icon-text-fit'] !== 'none' && shapedText) {
const iconWidth = (right - left),
iconHeight = (bottom - top),
size = layout['text-size'] / 24,
size = layer.getLayoutValue('text-size', globalProperties, feature) / 24,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why isn't this using {zoom: bucket.zoom + 1} like we do in symbol_layout#addFeature? That seems like the best match. @anandthakker understands that logic better than I do, though, I think.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Woah, good point @ChrisLoer. This raises an interesting issue. It's not just that we need to evaluate text-size with {zoom: bucket.zoom + 1} during layout (though I think you're right about that) -- if text-size is zoom depentent, we also need to scale the icon at render time according to the current text-size value. And if text-size is a composite function, that's going to be problematic -- we could try to use the text-size attributes for the icon rendering pass in that case, but that would only help for icon-text-size: both.

In any case, I think this goes well beyond the scope of this PR. I'll ticket it separately, 👍 for now!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"text-field": {
"type": "identity",
"property": "name"
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

["get", "name"]

"text-size": {
"type": "identity",
"property": "size"
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

["get", "size"]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants