summaryrefslogtreecommitdiff
path: root/include/mbgl/text/placement.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-07-16 18:53:56 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-07-16 18:53:56 -0700
commit4ea281c750c5afcc68f2832bb42d98a1cbce6735 (patch)
tree60bc7d3ccba2c54859e2e023997cc027cc67aea7 /include/mbgl/text/placement.hpp
parentc1a64dc5fa73b54cc5de77629781dfc74302a1e7 (diff)
downloadqtlocation-mapboxgl-4ea281c750c5afcc68f2832bb42d98a1cbce6735.tar.gz
rename llmr => mbgl
Diffstat (limited to 'include/mbgl/text/placement.hpp')
-rw-r--r--include/mbgl/text/placement.hpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/include/mbgl/text/placement.hpp b/include/mbgl/text/placement.hpp
new file mode 100644
index 0000000000..69a1a10b72
--- /dev/null
+++ b/include/mbgl/text/placement.hpp
@@ -0,0 +1,37 @@
+#ifndef MBGL_TEXT_PLACEMENT
+#define MBGL_TEXT_PLACEMENT
+
+#include <mbgl/text/collision.hpp>
+#include <mbgl/geometry/geometry.hpp>
+#include <mbgl/util/vec.hpp>
+#include <mbgl/text/glyph.hpp>
+#include <vector>
+
+namespace mbgl {
+
+class TextBucket;
+class StyleBucketText;
+
+class Placement {
+public:
+ Placement(int8_t zoom);
+
+ void addFeature(TextBucket &bucket, const std::vector<Coordinate> &line,
+ const StyleBucketText &info,
+ const GlyphPositions &face,
+ const Shaping &shaping);
+
+private:
+ const int8_t zoom;
+ Collision collision;
+ const float zOffset;
+ const float maxPlacementScale;
+
+public:
+ static const int tileExtent;
+ static const int glyphSize;
+ static const float minScale;
+};
+}
+
+#endif