summaryrefslogtreecommitdiff
path: root/src/mbgl/style/expression/compound_expression.cpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2018-08-07 18:02:43 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2018-08-07 18:31:59 +0300
commit0ec4a84c310f4bf95265939698d71f267af5802e (patch)
tree7545a31a8003115f0db720dac7ccbf6cbacdfbc7 /src/mbgl/style/expression/compound_expression.cpp
parent1dabfe783d7871a6ea232d4da3981a42fbecb7ba (diff)
downloadqtlocation-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 'src/mbgl/style/expression/compound_expression.cpp')
-rw-r--r--src/mbgl/style/expression/compound_expression.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/expression/compound_expression.cpp b/src/mbgl/style/expression/compound_expression.cpp
index 53ce91f0b7..4c476a3749 100644
--- a/src/mbgl/style/expression/compound_expression.cpp
+++ b/src/mbgl/style/expression/compound_expression.cpp
@@ -343,12 +343,12 @@ std::unordered_map<std::string, CompoundExpressionRegistry::Definition> initiali
});
define("heatmap-density", [](const EvaluationContext& params) -> Result<double> {
- if (!params.heatmapDensity) {
+ if (!params.colorRampParameter) {
return EvaluationError {
"The 'heatmap-density' expression is unavailable in the current evaluation context."
};
}
- return *(params.heatmapDensity);
+ return *(params.colorRampParameter);
});
define("has", [](const EvaluationContext& params, const std::string& key) -> Result<bool> {