blob: 6b9d0a047a1fff2c1e72463706eb186f7edabc7b (
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
|
#ifndef MBGL_MAP_LIVE_TILE_DATA
#define MBGL_MAP_LIVE_TILE_DATA
#include <mbgl/map/vector_tile_data.hpp>
namespace mbgl {
class AnnotationManager;
class LiveTileData : public VectorTileData {
public:
LiveTileData(Tile::ID const&,
AnnotationManager&,
float mapMaxZoom,
util::ptr<Style>,
GlyphAtlas&,
GlyphStore&,
SpriteAtlas&,
util::ptr<Sprite>,
const SourceInfo&,
Environment&);
~LiveTileData();
void parse() override;
private:
AnnotationManager& annotationManager;
};
}
#endif
|