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
|
#pragma once
#include <mbgl/renderer/image_atlas.hpp>
#include <mbgl/style/layers/symbol_layer_properties.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/text/glyph.hpp>
#include <mbgl/text/glyph_atlas.hpp>
#include <mbgl/text/tagged_string.hpp>
namespace mbgl {
struct AnchorAlignment {
AnchorAlignment(float horizontal, float vertical)
: horizontalAlign(horizontal), verticalAlign(vertical) {
}
static AnchorAlignment getAnchorAlignment(style::SymbolAnchorType anchor);
float horizontalAlign;
float verticalAlign;
};
// Choose the justification that matches the direction of the TextAnchor
style::TextJustifyType getAnchorJustification(style::SymbolAnchorType anchor);
class SymbolFeature;
class BiDi;
class PositionedIcon {
private:
PositionedIcon(ImagePosition image_, float top_, float bottom_, float left_, float right_, float angle_)
: _image(image_), _top(top_), _bottom(bottom_), _left(left_), _right(right_), _angle(angle_) {}
ImagePosition _image;
float _top;
float _bottom;
float _left;
float _right;
float _angle;
public:
static PositionedIcon shapeIcon(const ImagePosition&,
const std::array<float, 2>& iconOffset,
style::SymbolAnchorType iconAnchor,
const float iconRotation);
// Updates shaped icon's bounds based on shaped text's bounds and provided
// layout properties.
void fitIconToText(const Shaping& shapedText,
const style::IconTextFitType textFit,
const std::array<float, 4>& padding,
const std::array<float, 2>& iconOffset,
const float fontScale);
const ImagePosition& image() const { return _image; }
float top() const { return _top; }
float bottom() const { return _bottom; }
float left() const { return _left; }
float right() const { return _right; }
float angle() const { return _angle; }
};
const Shaping getShaping(const TaggedString& string,
float maxWidth,
float lineHeight,
style::SymbolAnchorType textAnchor,
style::TextJustifyType textJustify,
float spacing,
const std::array<float, 2>& translate,
const WritingModeType,
BiDi& bidi,
const GlyphMap& glyphMap,
const GlyphPositions& glyphPositions,
const ImagePositions& imagePositions,
float layoutTextSize,
float layoutTextSizeAtBucketZoomLevel,
bool allowVerticalPlacement);
} // namespace mbgl
|