diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-03-07 18:52:00 +0200 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-03-29 16:18:41 +0200 |
commit | 2b9a52f5e4cfd1a90c96b307ea218c720df10436 (patch) | |
tree | e38d567a8e6738673af617673a4465e59eba2c09 /include | |
parent | a6d8742e637a53eea90c2d0da049e684804928d3 (diff) | |
download | qtlocation-mapboxgl-2b9a52f5e4cfd1a90c96b307ea218c720df10436.tar.gz |
[core] Enable 'text-radial-offset' property
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/layers/symbol_layer.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/style/layers/symbol_layer.hpp b/include/mbgl/style/layers/symbol_layer.hpp index 46935ef535..35fe72e6bf 100644 --- a/include/mbgl/style/layers/symbol_layer.hpp +++ b/include/mbgl/style/layers/symbol_layer.hpp @@ -134,6 +134,10 @@ public: PropertyValue<TextJustifyType> getTextJustify() const; void setTextJustify(PropertyValue<TextJustifyType>); + static PropertyValue<float> getDefaultTextRadialOffset(); + PropertyValue<float> getTextRadialOffset() const; + void setTextRadialOffset(PropertyValue<float>); + static PropertyValue<std::vector<TextVariableAnchorType>> getDefaultTextVariableAnchor(); PropertyValue<std::vector<TextVariableAnchorType>> getTextVariableAnchor() const; void setTextVariableAnchor(PropertyValue<std::vector<TextVariableAnchorType>>); |