summaryrefslogtreecommitdiff
path: root/include/mbgl/style
diff options
context:
space:
mode:
authorLauren Budorick <lauren@mapbox.com>2014-10-26 17:31:06 -0400
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-11-04 12:26:13 -0800
commit0d6bca0e7e46588f57b178a4593fdb02f5c4592f (patch)
tree3a3db940afc73dc169bbba83c7386c4246e94632 /include/mbgl/style
parent0e3f111a79ecd81f0bd4663daa0a1cb6deca161d (diff)
downloadqtlocation-mapboxgl-0d6bca0e7e46588f57b178a4593fdb02f5c4592f.tar.gz
line-offset -> line-gap-width
Diffstat (limited to 'include/mbgl/style')
-rw-r--r--include/mbgl/style/property_key.hpp2
-rw-r--r--include/mbgl/style/style_properties.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/style/property_key.hpp b/include/mbgl/style/property_key.hpp
index cbf9ad2ac5..efeebf0242 100644
--- a/include/mbgl/style/property_key.hpp
+++ b/include/mbgl/style/property_key.hpp
@@ -21,7 +21,7 @@ enum class PropertyKey {
LineTranslateY,
LineTranslateAnchor,
LineWidth,
- LineOffset,
+ LineGapWidth,
LineBlur,
LineDashArray, // for transitions only
LineDashLand,
diff --git a/include/mbgl/style/style_properties.hpp b/include/mbgl/style/style_properties.hpp
index 0a5e993411..c44b7c34c8 100644
--- a/include/mbgl/style/style_properties.hpp
+++ b/include/mbgl/style/style_properties.hpp
@@ -34,7 +34,7 @@ struct LineProperties {
std::array<float, 2> translate = {{ 0, 0 }};
TranslateAnchorType translateAnchor = TranslateAnchorType::Map;
float width = 1;
- float offset = 0;
+ float gap_width = 0;
float blur = 0;
std::array<float, 2> dash_array = {{ 1, -1 }};
std::string image;