summaryrefslogtreecommitdiff
path: root/src/mbgl/annotation/style_sourced_annotation_impl.hpp
blob: 09ef474fc0a61eae20a9a8fa85369a7c6504119b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <mbgl/annotation/shape_annotation_impl.hpp>
#include <mbgl/annotation/annotation.hpp>

namespace mbgl {

class StyleSourcedAnnotationImpl : public ShapeAnnotationImpl {
public:
    StyleSourcedAnnotationImpl(const AnnotationID, const StyleSourcedAnnotation&, const uint8_t maxZoom);

    void updateStyle(style::Style&) const final;
    const ShapeAnnotationGeometry& geometry() const final;

private:
    const StyleSourcedAnnotation annotation;
};

} // namespace mbgl