summaryrefslogtreecommitdiff
path: root/include/mbgl/annotation/point_annotation.hpp
blob: 3dea9a3e3e573239b3c4cdcee48122204763f80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MBGL_ANNOTATION_POINT_ANNOTATION
#define MBGL_ANNOTATION_POINT_ANNOTATION

#include <mbgl/util/geo.hpp>

#include <string>

namespace mbgl {

class PointAnnotation {
public:
    PointAnnotation(const LatLng& position_, const std::string& icon_ = "")
        : position(position_.wrapped()), icon(icon_) {}

    const LatLng position;
    const std::string icon;
};

} // namespace mbgl

#endif