summaryrefslogtreecommitdiff
path: root/src/mbgl/annotation/annotation_manager.hpp
blob: 326565f8bcbb8ac8f2d0e8494b52ec65e12c5799 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#pragma once

#include <mbgl/annotation/annotation.hpp>
#include <mbgl/annotation/symbol_annotation_impl.hpp>
#include <mbgl/style/image.hpp>
#include <mbgl/util/noncopyable.hpp>

#include <mutex>
#include <string>
#include <vector>
#include <unordered_set>
#include <unordered_map>

namespace mbgl {

class LatLngBounds;
class AnnotationTile;
class AnnotationTileData;
class SymbolAnnotationImpl;
class ShapeAnnotationImpl;

namespace style {
class Style;
} // namespace style

class AnnotationManager : private util::noncopyable {
public:
    AnnotationManager(style::Style&);
    ~AnnotationManager();

    AnnotationID addAnnotation(const Annotation&);
    bool updateAnnotation(const AnnotationID&, const Annotation&);
    void removeAnnotation(const AnnotationID&);

    void addImage(std::unique_ptr<style::Image>);
    void removeImage(const std::string&);
    double getTopOffsetPixelsForImage(const std::string&);

    void setStyle(style::Style&);
    void onStyleLoaded();

    void updateData();

    void addTile(AnnotationTile&);
    void removeTile(AnnotationTile&);

    static const std::string SourceID;
    static const std::string PointLayerID;
    static const std::string ShapeLayerID;

private:
    void add(const AnnotationID&, const SymbolAnnotation&);
    void add(const AnnotationID&, const LineAnnotation&);
    void add(const AnnotationID&, const FillAnnotation&);

    void update(const AnnotationID&, const SymbolAnnotation&);
    void update(const AnnotationID&, const LineAnnotation&);
    void update(const AnnotationID&, const FillAnnotation&);

    void remove(const AnnotationID&);

    void updateStyle();

    std::unique_ptr<AnnotationTileData> getTileData(const CanonicalTileID&);

    std::reference_wrapper<style::Style> style;

    std::mutex mutex;

    bool dirty = false;
    
    AnnotationID nextID = 0;

    using SymbolAnnotationTree = boost::geometry::index::rtree<std::shared_ptr<const SymbolAnnotationImpl>, boost::geometry::index::rstar<16, 4>>;
    // Unlike std::unordered_map, std::map is guaranteed to sort by AnnotationID, ensuring that older annotations are below newer annotations.
    // <https://github.com/mapbox/mapbox-gl-native/issues/5691>
    using SymbolAnnotationMap = std::map<AnnotationID, std::shared_ptr<SymbolAnnotationImpl>>;
    using ShapeAnnotationMap = std::map<AnnotationID, std::unique_ptr<ShapeAnnotationImpl>>;
    using ImageMap = std::unordered_map<std::string, style::Image>;

    SymbolAnnotationTree symbolTree;
    SymbolAnnotationMap symbolAnnotations;
    ShapeAnnotationMap shapeAnnotations;
    ImageMap images;

    std::unordered_set<AnnotationTile*> tiles;

    friend class AnnotationTile;
};

} // namespace mbgl