summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_properties.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/style_properties.hpp')
-rw-r--r--src/mbgl/style/style_properties.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mbgl/style/style_properties.hpp b/src/mbgl/style/style_properties.hpp
index c44b7c34c8..c5149b2d1c 100644
--- a/src/mbgl/style/style_properties.hpp
+++ b/src/mbgl/style/style_properties.hpp
@@ -9,6 +9,7 @@
#include <string>
#include <type_traits>
#include <memory>
+#include <vector>
namespace mbgl {
@@ -36,7 +37,8 @@ struct LineProperties {
float width = 1;
float gap_width = 0;
float blur = 0;
- std::array<float, 2> dash_array = {{ 1, -1 }};
+ std::vector<float> dash_array;
+ float dash_line_width = 1;
std::string image;
inline bool isVisible() const {