summaryrefslogtreecommitdiff
path: root/include/mbgl/style/types.hpp
diff options
context:
space:
mode:
authorMolly Lloyd <molly@mapbox.com>2018-12-13 17:05:43 -0800
committerMolly Lloyd <molly@mapbox.com>2018-12-13 17:05:43 -0800
commit7db9ce37e648e8145816f11dcdb3251f0ce81d74 (patch)
tree8f6b8c96e9571355b72f6e2d633a5d8036eb59a8 /include/mbgl/style/types.hpp
parent98984ef2926dbd1cc6876880ac99cfa737f74a1c (diff)
downloadqtlocation-mapboxgl-7db9ce37e648e8145816f11dcdb3251f0ce81d74.tar.gz
[core] add dynamic-text-anchor property
Diffstat (limited to 'include/mbgl/style/types.hpp')
-rw-r--r--include/mbgl/style/types.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp
index ed875733c7..2a7635ff2d 100644
--- a/include/mbgl/style/types.hpp
+++ b/include/mbgl/style/types.hpp
@@ -98,6 +98,19 @@ enum class SymbolAnchorType : uint8_t {
BottomRight
};
+enum class DynamicTextAnchorType : uint8_t {
+ Auto,
+ Center,
+ Left,
+ Right,
+ Top,
+ Bottom,
+ TopLeft,
+ TopRight,
+ BottomLeft,
+ BottomRight
+};
+
enum class TextTransformType : uint8_t {
None,
Uppercase,