summaryrefslogtreecommitdiff
path: root/src/mbgl/annotation/line_annotation_impl.cpp
blob: e22c36bcbe23078f5db07a98bd2ac298863516c4 (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
#include <mbgl/annotation/line_annotation_impl.hpp>
#include <mbgl/annotation/annotation_manager.hpp>
#include <mbgl/style/style.hpp>
#include <mbgl/layer/line_layer.hpp>

namespace mbgl {

namespace geojsonvt = mapbox::geojsonvt;

LineAnnotationImpl::LineAnnotationImpl(const AnnotationID id_, const LineAnnotation& annotation_, const uint8_t maxZoom_)
    : ShapeAnnotationImpl(id_, maxZoom_),
      annotation(annotation_) {
}

void LineAnnotationImpl::updateStyle(Style& style) const {
    if (style.getLayer(layerID))
        return;

    std::unique_ptr<LineLayer> layer = std::make_unique<LineLayer>();
    layer->layout.lineJoin = LineJoinType::Round;

    layer->paint.lineOpacity = annotation.opacity;
    layer->paint.lineWidth = annotation.width;
    layer->paint.lineColor = annotation.color;

    layer->id = layerID;
    layer->source = AnnotationManager::SourceID;
    layer->sourceLayer = layer->id;

    style.addLayer(std::move(layer), AnnotationManager::PointLayerID);
}

const Geometry<double>& LineAnnotationImpl::geometry() const {
    return annotation.geometry;
}

} // namespace mbgl