blob: 96e06ca22262e8b8d19cedd0d2828cf093e5bb9e (
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
|
#pragma once
#include <mbgl/util/geometry.hpp>
#include <mbgl/util/variant.hpp>
#include <mbgl/util/color.hpp>
#include <mbgl/style/property_value.hpp>
#include <mbgl/style/data_driven_property_value.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;
style::DataDrivenPropertyValue<float> opacity { 1.0f };
style::DataDrivenPropertyValue<float> width { 1.0f };
style::DataDrivenPropertyValue<Color> color { Color::black() };
};
class FillAnnotation {
public:
ShapeAnnotationGeometry geometry;
style::DataDrivenPropertyValue<float> opacity { 1.0f };
style::DataDrivenPropertyValue<Color> color { Color::black() };
style::DataDrivenPropertyValue<Color> outlineColor {};
};
using Annotation = variant<
SymbolAnnotation,
LineAnnotation,
FillAnnotation>;
} // namespace mbgl
|