-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathsymbol_layout.js
436 lines (386 loc) · 19 KB
/
symbol_layout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
// @flow
import Anchor from './anchor';
import getAnchors from './get_anchors';
import clipLine from './clip_line';
import OpacityState from './opacity_state';
import { shapeText, shapeIcon, WritingMode } from './shaping';
import { getGlyphQuads, getIconQuads } from './quads';
import CollisionFeature from './collision_feature';
import { warnOnce } from '../util/util';
import {
allowsVerticalWritingMode,
allowsLetterSpacing
} from '../util/script_detection';
import findPoleOfInaccessibility from '../util/find_pole_of_inaccessibility';
import classifyRings from '../util/classify_rings';
import EXTENT from '../data/extent';
import SymbolBucket from '../data/bucket/symbol_bucket';
import EvaluationParameters from '../style/evaluation_parameters';
import type {Shaping, PositionedIcon} from './shaping';
import type {CollisionBoxArray} from '../data/array_types';
import type {SymbolFeature} from '../data/bucket/symbol_bucket';
import type {StyleImage} from '../style/style_image';
import type {StyleGlyph} from '../style/style_glyph';
import type SymbolStyleLayer from '../style/style_layer/symbol_style_layer';
import type {ImagePosition} from '../render/image_atlas';
import type {GlyphPosition} from '../render/glyph_atlas';
import type {PossiblyEvaluatedPropertyValue} from '../style/properties';
import Point from '@mapbox/point-geometry';
// The symbol layout process needs `text-size` evaluated at up to five different zoom levels, and
// `icon-size` at up to three:
//
// 1. `text-size` at the zoom level of the bucket. Used to calculate a per-feature size for source `text-size`
// expressions, and to calculate the box dimensions for icon-text-fit.
// 2. `icon-size` at the zoom level of the bucket. Used to calculate a per-feature size for source `icon-size`
// expressions.
// 3. `text-size` and `icon-size` at the zoom level of the bucket, plus one. Used to calculate collision boxes.
// 4. `text-size` at zoom level 18. Used for something line-symbol-placement-related.
// 5. For composite `*-size` expressions: two zoom levels of curve stops that "cover" the zoom level of the
// bucket. These go into a vertex buffer and are used by the shader to interpolate the size at render time.
//
// (1) and (2) are stored in `bucket.layers[0].layout`. The remainder are below.
//
type Sizes = {
layoutTextSize: PossiblyEvaluatedPropertyValue<number>, // (3)
layoutIconSize: PossiblyEvaluatedPropertyValue<number>, // (3)
textMaxSize: PossiblyEvaluatedPropertyValue<number>, // (4)
compositeTextSizes: [PossiblyEvaluatedPropertyValue<number>, PossiblyEvaluatedPropertyValue<number>], // (5)
compositeIconSizes: [PossiblyEvaluatedPropertyValue<number>, PossiblyEvaluatedPropertyValue<number>], // (5)
};
export function performSymbolLayout(bucket: SymbolBucket,
glyphMap: {[string]: {[number]: ?StyleGlyph}},
glyphPositions: {[string]: {[number]: GlyphPosition}},
imageMap: {[string]: StyleImage},
imagePositions: {[string]: ImagePosition},
showCollisionBoxes: boolean) {
bucket.createArrays();
bucket.symbolInstances = [];
const tileSize = 512 * bucket.overscaling;
bucket.tilePixelRatio = EXTENT / tileSize;
bucket.compareText = {};
bucket.iconsNeedLinear = false;
const layout = bucket.layers[0].layout;
const unevaluatedLayoutValues = bucket.layers[0]._unevaluatedLayout._values;
const sizes = {};
if (bucket.textSizeData.functionType === 'composite') {
const {min, max} = bucket.textSizeData.zoomRange;
sizes.compositeTextSizes = [
unevaluatedLayoutValues['text-size'].possiblyEvaluate(new EvaluationParameters(min)),
unevaluatedLayoutValues['text-size'].possiblyEvaluate(new EvaluationParameters(max))
];
}
if (bucket.iconSizeData.functionType === 'composite') {
const {min, max} = bucket.iconSizeData.zoomRange;
sizes.compositeIconSizes = [
unevaluatedLayoutValues['icon-size'].possiblyEvaluate(new EvaluationParameters(min)),
unevaluatedLayoutValues['icon-size'].possiblyEvaluate(new EvaluationParameters(max))
];
}
sizes.layoutTextSize = unevaluatedLayoutValues['text-size'].possiblyEvaluate(new EvaluationParameters(bucket.zoom + 1));
sizes.layoutIconSize = unevaluatedLayoutValues['icon-size'].possiblyEvaluate(new EvaluationParameters(bucket.zoom + 1));
sizes.textMaxSize = unevaluatedLayoutValues['text-size'].possiblyEvaluate(new EvaluationParameters(18));
const oneEm = 24;
const lineHeight = layout.get('text-line-height') * oneEm;
const textAlongLine = layout.get('text-rotation-alignment') === 'map' && layout.get('symbol-placement') === 'line';
const keepUpright = layout.get('text-keep-upright');
for (const feature of bucket.features) {
const fontstack = layout.get('text-font').evaluate(feature).join(',');
const glyphs = glyphMap[fontstack] || {};
const glyphPositionMap = glyphPositions[fontstack] || {};
const shapedTextOrientations = {};
const text = feature.text;
if (text) {
const textOffset: [number, number] = (layout.get('text-offset').evaluate(feature).map((t)=> t * oneEm): any);
const spacing = layout.get('text-letter-spacing').evaluate(feature) * oneEm;
const spacingIfAllowed = allowsLetterSpacing(text) ? spacing : 0;
const textAnchor = layout.get('text-anchor').evaluate(feature);
const textJustify = layout.get('text-justify').evaluate(feature);
const maxWidth = layout.get('symbol-placement') !== 'line' ?
layout.get('text-max-width').evaluate(feature) * oneEm :
0;
shapedTextOrientations.horizontal = shapeText(text, glyphs, maxWidth, lineHeight, textAnchor, textJustify, spacingIfAllowed, textOffset, oneEm, WritingMode.horizontal);
if (allowsVerticalWritingMode(text) && textAlongLine && keepUpright) {
shapedTextOrientations.vertical = shapeText(text, glyphs, maxWidth, lineHeight, textAnchor, textJustify, spacingIfAllowed, textOffset, oneEm, WritingMode.vertical);
}
}
let shapedIcon;
if (feature.icon) {
const image = imageMap[feature.icon];
if (image) {
shapedIcon = shapeIcon(
imagePositions[feature.icon],
layout.get('icon-offset').evaluate(feature),
layout.get('icon-anchor').evaluate(feature));
if (bucket.sdfIcons === undefined) {
bucket.sdfIcons = image.sdf;
} else if (bucket.sdfIcons !== image.sdf) {
warnOnce('Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer');
}
if (image.pixelRatio !== bucket.pixelRatio) {
bucket.iconsNeedLinear = true;
} else if (layout.get('icon-rotate').constantOr(1) !== 0) {
bucket.iconsNeedLinear = true;
}
}
}
if (shapedTextOrientations.horizontal || shapedIcon) {
addFeature(bucket, feature, shapedTextOrientations, shapedIcon, glyphPositionMap, sizes);
}
}
if (showCollisionBoxes) {
bucket.generateCollisionDebugBuffers();
}
}
/**
* Given a feature and its shaped text and icon data, add a 'symbol
* instance' for each _possible_ placement of the symbol feature.
* (At render timePlaceSymbols#place() selects which of these instances to
* show or hide based on collisions with symbols in other layers.)
* @private
*/
function addFeature(bucket: SymbolBucket,
feature: SymbolFeature,
shapedTextOrientations: any,
shapedIcon: PositionedIcon | void,
glyphPositionMap: {[number]: GlyphPosition},
sizes: Sizes) {
const layoutTextSize = sizes.layoutTextSize.evaluate(feature);
const layoutIconSize = sizes.layoutIconSize.evaluate(feature);
// To reduce the number of labels that jump around when zooming we need
// to use a text-size value that is the same for all zoom levels.
// bucket calculates text-size at a high zoom level so that all tiles can
// use the same value when calculating anchor positions.
let textMaxSize = sizes.textMaxSize.evaluate(feature);
if (textMaxSize === undefined) {
textMaxSize = layoutTextSize;
}
const layout = bucket.layers[0].layout;
const textOffset = layout.get('text-offset').evaluate(feature);
const iconOffset = layout.get('icon-offset').evaluate(feature);
const glyphSize = 24,
fontScale = layoutTextSize / glyphSize,
textBoxScale = bucket.tilePixelRatio * fontScale,
textMaxBoxScale = bucket.tilePixelRatio * textMaxSize / glyphSize,
iconBoxScale = bucket.tilePixelRatio * layoutIconSize,
symbolMinDistance = bucket.tilePixelRatio * layout.get('symbol-spacing'),
textPadding = layout.get('text-padding') * bucket.tilePixelRatio,
iconPadding = layout.get('icon-padding') * bucket.tilePixelRatio,
textMaxAngle = layout.get('text-max-angle') / 180 * Math.PI,
textAlongLine = layout.get('text-rotation-alignment') === 'map' && layout.get('symbol-placement') === 'line',
iconAlongLine = layout.get('icon-rotation-alignment') === 'map' && layout.get('symbol-placement') === 'line',
symbolPlacement = layout.get('symbol-placement'),
textRepeatDistance = symbolMinDistance / 2;
const addSymbolAtAnchor = (line, anchor) => {
if (anchor.x < 0 || anchor.x >= EXTENT || anchor.y < 0 || anchor.y >= EXTENT) {
// Symbol layers are drawn across tile boundaries, We filter out symbols
// outside our tile boundaries (which may be included in vector tile buffers)
// to prevent double-drawing symbols.
return;
}
bucket.symbolInstances.push(addSymbol(bucket, anchor, line, shapedTextOrientations, shapedIcon, bucket.layers[0],
bucket.collisionBoxArray, feature.index, feature.sourceLayerIndex, bucket.index,
textBoxScale, textPadding, textAlongLine, textOffset,
iconBoxScale, iconPadding, iconAlongLine, iconOffset,
feature, glyphPositionMap, sizes));
};
if (symbolPlacement === 'line') {
for (const line of clipLine(feature.geometry, 0, 0, EXTENT, EXTENT)) {
const anchors = getAnchors(
line,
symbolMinDistance,
textMaxAngle,
shapedTextOrientations.vertical || shapedTextOrientations.horizontal,
shapedIcon,
glyphSize,
textMaxBoxScale,
bucket.overscaling,
EXTENT
);
for (const anchor of anchors) {
const shapedText = shapedTextOrientations.horizontal;
if (!shapedText || !anchorIsTooClose(bucket, shapedText.text, textRepeatDistance, anchor)) {
addSymbolAtAnchor(line, anchor);
}
}
}
} else if (feature.type === 'Polygon') {
for (const polygon of classifyRings(feature.geometry, 0)) {
// 16 here represents 2 pixels
const poi = findPoleOfInaccessibility(polygon, 16);
addSymbolAtAnchor(polygon[0], new Anchor(poi.x, poi.y, 0));
}
} else if (feature.type === 'LineString') {
// https://github.com/mapbox/mapbox-gl-js/issues/3808
for (const line of feature.geometry) {
addSymbolAtAnchor(line, new Anchor(line[0].x, line[0].y, 0));
}
} else if (feature.type === 'Point') {
for (const points of feature.geometry) {
for (const point of points) {
addSymbolAtAnchor([point], new Anchor(point.x, point.y, 0));
}
}
}
}
function addTextVertices(bucket: SymbolBucket,
anchor: Point,
shapedText: Shaping,
layer: SymbolStyleLayer,
textAlongLine: boolean,
feature: SymbolFeature,
textOffset: [number, number],
lineArray: {lineStartIndex: number, lineLength: number},
writingMode: number,
placedTextSymbolIndices: Array<number>,
glyphPositionMap: {[number]: GlyphPosition},
sizes: Sizes) {
const glyphQuads = getGlyphQuads(anchor, shapedText,
layer, textAlongLine, feature, glyphPositionMap);
const sizeData = bucket.textSizeData;
let textSizeData = null;
if (sizeData.functionType === 'source') {
textSizeData = [
10 * layer.layout.get('text-size').evaluate(feature)
];
} else if (sizeData.functionType === 'composite') {
textSizeData = [
10 * sizes.compositeTextSizes[0].evaluate(feature),
10 * sizes.compositeTextSizes[1].evaluate(feature)
];
}
bucket.addSymbols(
bucket.text,
glyphQuads,
textSizeData,
textOffset,
textAlongLine,
feature,
writingMode,
anchor,
lineArray.lineStartIndex,
lineArray.lineLength);
// The placedSymbolArray is used at render time in drawTileSymbols
// These indices allow access to the array at collision detection time
placedTextSymbolIndices.push(bucket.text.placedSymbolArray.length - 1);
return glyphQuads.length * 4;
}
/**
* Add a single label & icon placement.
*
* @private
*/
function addSymbol(bucket: SymbolBucket,
anchor: Anchor,
line: Array<Point>,
shapedTextOrientations: any,
shapedIcon: PositionedIcon | void,
layer: SymbolStyleLayer,
collisionBoxArray: CollisionBoxArray,
featureIndex: number,
sourceLayerIndex: number,
bucketIndex: number,
textBoxScale: number,
textPadding: number,
textAlongLine: boolean,
textOffset: [number, number],
iconBoxScale: number,
iconPadding: number,
iconAlongLine: boolean,
iconOffset: [number, number],
feature: SymbolFeature,
glyphPositionMap: {[number]: GlyphPosition},
sizes: Sizes) {
const lineArray = bucket.addToLineVertexArray(anchor, line);
let textCollisionFeature, iconCollisionFeature;
let numIconVertices = 0;
let numGlyphVertices = 0;
let numVerticalGlyphVertices = 0;
const key = shapedTextOrientations.horizontal ? shapedTextOrientations.horizontal.text : '';
const placedTextSymbolIndices = [];
if (shapedTextOrientations.horizontal) {
// As a collision approximation, we can use either the vertical or the horizontal version of the feature
// We're counting on the two versions having similar dimensions
textCollisionFeature = new CollisionFeature(collisionBoxArray, line, anchor, featureIndex, sourceLayerIndex, bucketIndex, shapedTextOrientations.horizontal, textBoxScale, textPadding, textAlongLine, bucket.overscaling);
numGlyphVertices += addTextVertices(bucket, anchor, shapedTextOrientations.horizontal, layer, textAlongLine, feature, textOffset, lineArray, shapedTextOrientations.vertical ? WritingMode.horizontal : WritingMode.horizontalOnly, placedTextSymbolIndices, glyphPositionMap, sizes);
if (shapedTextOrientations.vertical) {
numVerticalGlyphVertices += addTextVertices(bucket, anchor, shapedTextOrientations.vertical, layer, textAlongLine, feature, textOffset, lineArray, WritingMode.vertical, placedTextSymbolIndices, glyphPositionMap, sizes);
}
}
const textBoxStartIndex = textCollisionFeature ? textCollisionFeature.boxStartIndex : bucket.collisionBoxArray.length;
const textBoxEndIndex = textCollisionFeature ? textCollisionFeature.boxEndIndex : bucket.collisionBoxArray.length;
if (shapedIcon) {
const iconQuads = getIconQuads(anchor, shapedIcon, layer,
iconAlongLine, shapedTextOrientations.horizontal,
feature);
iconCollisionFeature = new CollisionFeature(collisionBoxArray, line, anchor, featureIndex, sourceLayerIndex, bucketIndex, shapedIcon, iconBoxScale, iconPadding, /*align boxes to line*/false, bucket.overscaling);
numIconVertices = iconQuads.length * 4;
const sizeData = bucket.iconSizeData;
let iconSizeData = null;
if (sizeData.functionType === 'source') {
iconSizeData = [
10 * layer.layout.get('icon-size').evaluate(feature)
];
} else if (sizeData.functionType === 'composite') {
iconSizeData = [
10 * sizes.compositeIconSizes[0].evaluate(feature),
10 * sizes.compositeIconSizes[1].evaluate(feature)
];
}
bucket.addSymbols(
bucket.icon,
iconQuads,
iconSizeData,
iconOffset,
iconAlongLine,
feature,
false,
anchor,
lineArray.lineStartIndex,
lineArray.lineLength);
}
const iconBoxStartIndex = iconCollisionFeature ? iconCollisionFeature.boxStartIndex : bucket.collisionBoxArray.length;
const iconBoxEndIndex = iconCollisionFeature ? iconCollisionFeature.boxEndIndex : bucket.collisionBoxArray.length;
if (bucket.glyphOffsetArray.length >= SymbolBucket.MAX_GLYPHS) warnOnce(
"Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907"
);
const textOpacityState = new OpacityState();
const iconOpacityState = new OpacityState();
return {
key,
textBoxStartIndex,
textBoxEndIndex,
iconBoxStartIndex,
iconBoxEndIndex,
textOffset,
iconOffset,
anchor,
line,
featureIndex,
feature,
numGlyphVertices,
numVerticalGlyphVertices,
numIconVertices,
textOpacityState,
iconOpacityState,
isDuplicate: false,
placedTextSymbolIndices,
crossTileID: 0
};
}
function anchorIsTooClose(bucket: any, text: string, repeatDistance: number, anchor: Point) {
const compareText = bucket.compareText;
if (!(text in compareText)) {
compareText[text] = [];
} else {
const otherAnchors = compareText[text];
for (let k = otherAnchors.length - 1; k >= 0; k--) {
if (anchor.dist(otherAnchors[k]) < repeatDistance) {
// If it's within repeatDistance of one anchor, stop looking
return true;
}
}
}
// If anchor is not within repeatDistance of any other anchor, add to array
compareText[text].push(anchor);
return false;
}