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

#include <mbgl/style/source.hpp>

namespace mbgl {

class AnnotationSource : public style::Source {
public:
    AnnotationSource(std::string id,
                     std::string url,
                     uint16_t tileSize,
                     std::unique_ptr<Tileset>&&,
                     std::unique_ptr<mapbox::geojsonvt::GeoJSONVT>&&);
};

} // namespace mbgl