Home
last modified time | relevance | path

Searched refs:HeatmapLayer (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dheatmap_layer.cpp14 HeatmapLayer::HeatmapLayer(const std::string& layerID, const std::string& sourceID) in HeatmapLayer() function in mbgl::style::HeatmapLayer
18 HeatmapLayer::HeatmapLayer(Immutable<Impl> impl_) in HeatmapLayer() function in mbgl::style::HeatmapLayer
22 HeatmapLayer::~HeatmapLayer() = default;
24 const HeatmapLayer::Impl& HeatmapLayer::impl() const { in impl()
28 Mutable<HeatmapLayer::Impl> HeatmapLayer::mutableImpl() const { in mutableImpl()
32 std::unique_ptr<Layer> HeatmapLayer::cloneRef(const std::string& id_) const { in cloneRef()
36 return std::make_unique<HeatmapLayer>(std::move(impl_)); in cloneRef()
39 void HeatmapLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { in stringifyLayout()
44 const std::string& HeatmapLayer::getSourceID() const { in getSourceID()
48 void HeatmapLayer::setSourceLayer(const std::string& sourceLayer) { in setSourceLayer()
[all …]
H A Dheatmap_layer_impl.cpp6 bool HeatmapLayer::Impl::hasLayoutDifference(const Layer::Impl& other) const { in hasLayoutDifference()
7 assert(dynamic_cast<const HeatmapLayer::Impl*>(&other)); in hasLayoutDifference()
8 const auto& impl = static_cast<const style::HeatmapLayer::Impl&>(other); in hasLayoutDifference()
H A Dheatmap_layer_impl.hpp10 class HeatmapLayer::Impl : public Layer::Impl {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp171 …result["heatmap-radius"] = &setProperty<HeatmapLayer, DataDrivenPropertyValue<float>, &HeatmapLaye… in makePaintPropertySetters()
172 …result["heatmap-radius-transition"] = &setTransition<HeatmapLayer, &HeatmapLayer::setHeatmapRadius… in makePaintPropertySetters()
173 …result["heatmap-weight"] = &setProperty<HeatmapLayer, DataDrivenPropertyValue<float>, &HeatmapLaye… in makePaintPropertySetters()
174 …result["heatmap-weight-transition"] = &setTransition<HeatmapLayer, &HeatmapLayer::setHeatmapWeight… in makePaintPropertySetters()
175 …result["heatmap-intensity"] = &setProperty<HeatmapLayer, PropertyValue<float>, &HeatmapLayer::setH… in makePaintPropertySetters()
176 …result["heatmap-intensity-transition"] = &setTransition<HeatmapLayer, &HeatmapLayer::setHeatmapInt… in makePaintPropertySetters()
177 …result["heatmap-color"] = &setProperty<HeatmapLayer, ColorRampPropertyValue, &HeatmapLayer::setHea… in makePaintPropertySetters()
178 …result["heatmap-color-transition"] = &setTransition<HeatmapLayer, &HeatmapLayer::setHeatmapColorTr… in makePaintPropertySetters()
179 …result["heatmap-opacity"] = &setProperty<HeatmapLayer, PropertyValue<float>, &HeatmapLayer::setHea… in makePaintPropertySetters()
180 …result["heatmap-opacity-transition"] = &setTransition<HeatmapLayer, &HeatmapLayer::setHeatmapOpaci… in makePaintPropertySetters()
H A Dlayer.cpp170 converted = convertVectorLayer<HeatmapLayer>(*id, value, error); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dheatmap_layer.hpp18 class HeatmapLayer : public Layer { class
20 HeatmapLayer(const std::string& layerID, const std::string& sourceID);
21 ~HeatmapLayer() final;
76 HeatmapLayer(Immutable<Impl>);
81 inline bool Layer::is<HeatmapLayer>() const { in is()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_heatmap_layer.cpp19 RenderHeatmapLayer::RenderHeatmapLayer(Immutable<style::HeatmapLayer::Impl> _impl) in RenderHeatmapLayer()
24 const style::HeatmapLayer::Impl& RenderHeatmapLayer::impl() const { in impl()
25 return static_cast<const style::HeatmapLayer::Impl&>(*baseImpl); in impl()
185 colorValue = HeatmapLayer::getDefaultHeatmapColor(); in updateColorRamp()
H A Drender_heatmap_layer.hpp13 RenderHeatmapLayer(Immutable<style::HeatmapLayer::Impl>);
37 const style::HeatmapLayer::Impl& impl() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dlayer.hpp26 class HeatmapLayer;
98 return std::forward<V>(visitor)(*as<HeatmapLayer>()); in accept()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.cpp42 return std::make_unique<RenderHeatmapLayer>(staticImmutableCast<HeatmapLayer::Impl>(impl)); in create()