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 icon-size for small data-driven values #7125

Merged
merged 2 commits into from
Aug 14, 2018
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
4 changes: 2 additions & 2 deletions src/shaders/symbol_icon.vertex.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ void main() {

float size;
if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {
size = mix(a_size[0], a_size[1], u_size_t) / 10.0;
size = mix(a_size[0], a_size[1], u_size_t) / 256.0;
} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {
size = a_size[0] / 10.0;
size = a_size[0] / 256.0;
} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {
size = u_size;
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/shaders/symbol_sdf.vertex.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ void main() {
float size;

if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {
size = mix(a_size[0], a_size[1], u_size_t) / 10.0;
size = mix(a_size[0], a_size[1], u_size_t) / 256.0;
} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {
size = a_size[0] / 10.0;
size = a_size[0] / 256.0;
} else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {
size = u_size;
} else {
Expand Down
27 changes: 21 additions & 6 deletions src/symbol/symbol_layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import EXTENT from '../data/extent';
import SymbolBucket from '../data/bucket/symbol_bucket';
import EvaluationParameters from '../style/evaluation_parameters';
import {Formatted} from '../style-spec/expression/definitions/formatted';
import {SIZE_PACK_FACTOR} from './symbol_size';

import type {Shaping, PositionedIcon} from './shaping';
import type {CollisionBoxArray} from '../data/array_types';
Expand Down Expand Up @@ -269,6 +270,8 @@ function addFeature(bucket: SymbolBucket,
}
}

const MAX_PACKED_SIZE = 65535;

function addTextVertices(bucket: SymbolBucket,
anchor: Point,
shapedText: Shaping,
Expand All @@ -289,13 +292,19 @@ function addTextVertices(bucket: SymbolBucket,

if (sizeData.functionType === 'source') {
textSizeData = [
10 * layer.layout.get('text-size').evaluate(feature, {})
SIZE_PACK_FACTOR * layer.layout.get('text-size').evaluate(feature, {})
];
if (textSizeData[0] > MAX_PACKED_SIZE) {
warnOnce(`${bucket.layerIds[0]}: Value for "text-size" is >= 256. Reduce your "text-size".`);
}
} else if (sizeData.functionType === 'composite') {
textSizeData = [
10 * sizes.compositeTextSizes[0].evaluate(feature, {}),
10 * sizes.compositeTextSizes[1].evaluate(feature, {})
SIZE_PACK_FACTOR * sizes.compositeTextSizes[0].evaluate(feature, {}),
SIZE_PACK_FACTOR * sizes.compositeTextSizes[1].evaluate(feature, {})
];
if (textSizeData[0] > MAX_PACKED_SIZE || textSizeData[1] > MAX_PACKED_SIZE) {
warnOnce(`${bucket.layerIds[0]}: Value for "text-size" is >= 256. Reduce your "text-size".`);
}
}

bucket.addSymbols(
Expand Down Expand Up @@ -382,13 +391,19 @@ function addSymbol(bucket: SymbolBucket,

if (sizeData.functionType === 'source') {
iconSizeData = [
10 * layer.layout.get('icon-size').evaluate(feature, {})
SIZE_PACK_FACTOR * layer.layout.get('icon-size').evaluate(feature, {})
];
if (iconSizeData[0] > MAX_PACKED_SIZE) {
warnOnce(`${bucket.layerIds[0]}: Value for "icon-size" is >= 256. Reduce your "icon-size".`);
}
} else if (sizeData.functionType === 'composite') {
iconSizeData = [
10 * sizes.compositeIconSizes[0].evaluate(feature, {}),
10 * sizes.compositeIconSizes[1].evaluate(feature, {})
SIZE_PACK_FACTOR * sizes.compositeIconSizes[0].evaluate(feature, {}),
SIZE_PACK_FACTOR * sizes.compositeIconSizes[1].evaluate(feature, {})
];
if (iconSizeData[0] > MAX_PACKED_SIZE || iconSizeData[1] > MAX_PACKED_SIZE) {
warnOnce(`${bucket.layerIds[0]}: Value for "icon-size" is >= 256. Reduce your "icon-size".`);
}
}

bucket.addSymbols(
Expand Down
8 changes: 5 additions & 3 deletions src/symbol/symbol_size.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import type {Property, PropertyValue, PossiblyEvaluatedPropertyValue} from '../s
import type {CameraExpression, CompositeExpression} from '../style-spec/expression/index';
import type {PropertyValueSpecification} from '../style-spec/types';

export { getSizeData, evaluateSizeForFeature, evaluateSizeForZoom };
const SIZE_PACK_FACTOR = 256;

export { getSizeData, evaluateSizeForFeature, evaluateSizeForZoom, SIZE_PACK_FACTOR };

export type SizeData = {
functionType: 'constant',
Expand Down Expand Up @@ -89,9 +91,9 @@ function evaluateSizeForFeature(sizeData: SizeData,
symbol: { lowerSize: number, upperSize: number}) {
const part = partiallyEvaluatedSize;
if (sizeData.functionType === 'source') {
return symbol.lowerSize / 10;
return symbol.lowerSize / SIZE_PACK_FACTOR;
} else if (sizeData.functionType === 'composite') {
return interpolate(symbol.lowerSize / 10, symbol.upperSize / 10, part.uSizeT);
return interpolate(symbol.lowerSize / SIZE_PACK_FACTOR, symbol.upperSize / SIZE_PACK_FACTOR, part.uSizeT);
} else {
return part.uSize;
}
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,40 @@
{
"version": 8,
"metadata": {
"test": {
"pixelRatio": 10,
"width": 24,
"height": 24
}
},
"sources": {
"geojson": {
"type": "geojson",
"data": {
"type": "Feature",
"properties": {
"size": 0.05
},
"geometry": {
"type": "Point",
"coordinates": [
0,
0
]
}
}
}
},
"sprite": "local://sprites/emerald",
"layers": [
{
"id": "symbol",
"type": "symbol",
"source": "geojson",
"layout": {
"icon-size": ["get", "size"],
"icon-image": "generic_icon"
}
}
]
}