summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation/annotation.hpp
blob: e8ac9a2fb71887e84f4d1f256bb22cffe3dc27d3 (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
#pragma once

#include <mbgl/util/geometry.hpp>
#include <mbgl/util/variant.hpp>
#include <mbgl/util/color.hpp>

#include <cstdint>
#include <vector>
#include <string>

namespace mbgl {

using AnnotationID = uint32_t;
using AnnotationIDs = std::vector<AnnotationID>;

class SymbolAnnotation {
public:
    Point<double> geometry;
    std::string icon;
};

using ShapeAnnotationGeometry = variant<
    LineString<double>,
    Polygon<double>,
    MultiLineString<double>,
    MultiPolygon<double>>;

class LineAnnotation {
public:
    ShapeAnnotationGeometry geometry;
    float opacity = 1;
    float width = 1;
    Color color = Color::black();
};

class FillAnnotation {
public:
    ShapeAnnotationGeometry geometry;
    float opacity = 1;
    Color color = Color::black();
    Color outlineColor = { 0, 0, 0, -1 };
};

// An annotation whose type and properties are sourced from a style layer.
class StyleSourcedAnnotation {
public:
    ShapeAnnotationGeometry geometry;
    std::string layerID;
};

using Annotation = variant<
    SymbolAnnotation,
    LineAnnotation,
    FillAnnotation,
    StyleSourcedAnnotation>;

} // namespace mbgl