summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/property_evaluation_parameters.hpp
blob: 39b663bdb98a89c18bc831ed085a01fe33c0d6de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once

#include <mbgl/map/zoom_history.hpp>
#include <mbgl/util/chrono.hpp>

namespace mbgl {

class PropertyEvaluationParameters {
public:
    explicit PropertyEvaluationParameters(float z_)
        : z(z_),
          now(Clock::time_point::max()),
          zoomHistory(),
          defaultFadeDuration(0) {}

    PropertyEvaluationParameters(ZoomHistory zoomHistory_,
                          TimePoint now_,
                          Duration defaultFadeDuration_)
        : z(zoomHistory_.lastZoom),
          now(std::move(now_)),
          zoomHistory(std::move(zoomHistory_)),
          defaultFadeDuration(std::move(defaultFadeDuration_)) {}

    float z;
    TimePoint now;
    ZoomHistory zoomHistory;
    Duration defaultFadeDuration;
};

} // namespace mbgl