summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation/shape_annotation.hpp
blob: a35b8672663b62d9defd34a62508a3486b31f38b (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
#ifndef MBGL_ANNOTATION_SHAPE_ANNOTATION
#define MBGL_ANNOTATION_SHAPE_ANNOTATION

#include <mbgl/util/geo.hpp>
#include <mbgl/map/map.hpp>
#include <mbgl/style/style_properties.hpp>

#include <string>

namespace mbgl {

class ShapeAnnotation {
public:
    inline ShapeAnnotation(const AnnotationSegments& segments_, const StyleProperties& styleProperties_)
        : segments(segments_), styleProperties(styleProperties_) {
    }

    const AnnotationSegments segments;
    const StyleProperties styleProperties;
};

}

#endif