blob: 6209c943f10a321c661fd9c152e1e1f78825ddaf (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#pragma once
#include <mbgl/renderer/render_source.hpp>
#include <mbgl/renderer/tile_pyramid.hpp>
#include <mbgl/annotation/annotation_source.hpp>
namespace mbgl {
class RenderAnnotationSource : public RenderSource {
public:
RenderAnnotationSource(Immutable<AnnotationSource::Impl>);
bool isLoaded() const final;
void update(Immutable<style::Source::Impl>,
const std::vector<Immutable<style::Layer::Impl>>&,
bool needsRendering,
bool needsRelayout,
const TileParameters&) final;
void startRender(PaintParameters&) final;
void finishRender(PaintParameters&) final;
std::vector<std::reference_wrapper<RenderTile>> getRenderTiles() final;
std::unordered_map<std::string, std::vector<Feature>>
queryRenderedFeatures(const ScreenLineString& geometry,
const TransformState& transformState,
const std::vector<const RenderLayer*>& layers,
const RenderedQueryOptions& options) const final;
std::vector<Feature>
querySourceFeatures(const SourceQueryOptions&) const final;
void onLowMemory() final;
void dumpDebugLogs() const final;
private:
const AnnotationSource::Impl& impl() const;
TilePyramid tilePyramid;
};
template <>
inline bool RenderSource::is<RenderAnnotationSource>() const {
return baseImpl->type == style::SourceType::Annotations;
}
} // namespace mbgl
|