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
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/symbol/quads.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.

textLeft = shapedText.left * size,
textRight = shapedText.right * size,
textTop = shapedText.top * size,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"version": 8,
"metadata": {
"test": {
"width": 64,
"height": 64
}
},
"sources": {
"geojson": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "A",
"size": 12
},
"geometry": {
"type": "Point",
"coordinates": [
-10,
0
]
}
},
{
"type": "Feature",
"properties": {
"name": "B",
"size": 24
},
"geometry": {
"type": "Point",
"coordinates": [
10,
0
]
}
}
]
}
}
},
"sprite": "local://sprites/icon-text-fit",
"glyphs": "local://glyphs/{fontstack}/{range}.pbf",
"layers": [
{
"id": "symbol",
"type": "symbol",
"source": "geojson",
"layout": {
"text-font": [
"Open Sans Semibold",
"Arial Unicode MS Bold"
],
"text-field": [
"get",
"name"
],
"text-size": [
"get",
"size"
],
"icon-image": "label",
"icon-text-fit": "both",
"icon-ignore-placement": true,
"icon-allow-overlap": true
}
}
]
}