diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2018-08-07 18:02:43 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2018-08-07 18:31:59 +0300 |
commit | 0ec4a84c310f4bf95265939698d71f267af5802e (patch) | |
tree | 7545a31a8003115f0db720dac7ccbf6cbacdfbc7 /include/mbgl | |
parent | 1dabfe783d7871a6ea232d4da3981a42fbecb7ba (diff) | |
download | qtlocation-mapboxgl-0ec4a84c310f4bf95265939698d71f267af5802e.tar.gz |
Rename `EvaluationContext::heatmapDensity` to `colorRampParameter`
More generic name as the same class member is to be used by the
linear gradient properties.
Diffstat (limited to 'include/mbgl')
-rw-r--r-- | include/mbgl/style/expression/expression.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mbgl/style/expression/expression.hpp b/include/mbgl/style/expression/expression.hpp index 26124f6463..bfd1e08ee7 100644 --- a/include/mbgl/style/expression/expression.hpp +++ b/include/mbgl/style/expression/expression.hpp @@ -30,13 +30,13 @@ public: EvaluationContext(float zoom_, GeometryTileFeature const * feature_) : zoom(zoom_), feature(feature_) {} - EvaluationContext(optional<float> zoom_, GeometryTileFeature const * feature_, optional<double> heatmapDensity_) : - zoom(std::move(zoom_)), feature(feature_), heatmapDensity(std::move(heatmapDensity_)) + EvaluationContext(optional<float> zoom_, GeometryTileFeature const * feature_, optional<double> colorRampParameter_) : + zoom(std::move(zoom_)), feature(feature_), colorRampParameter(std::move(colorRampParameter_)) {} optional<float> zoom; GeometryTileFeature const * feature; - optional<double> heatmapDensity; + optional<double> colorRampParameter; }; template <typename T> @@ -151,7 +151,7 @@ public: Kind getKind() const { return kind; }; type::Type getType() const { return type; }; - EvaluationResult evaluate(optional<float> zoom, const Feature& feature, optional<double> heatmapDensity) const; + EvaluationResult evaluate(optional<float> zoom, const Feature& feature, optional<double> colorRampParameter) const; /** * Statically analyze the expression, attempting to enumerate possible outputs. Returns |