summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/vector_source_impl.cpp
blob: 9c28ce409ad95bc32a4f24b340ed9159b38a779a (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
#include <mbgl/style/sources/vector_source_impl.hpp>

namespace mbgl {
namespace style {

VectorSource::Impl::Impl(std::string id_) : Source::Impl(std::move(id_)) {}

VectorSource::Impl::Impl(const Impl& other, Tileset tileset_) : Source::Impl(other), tileset(std::move(tileset_)) {}

optional<std::string> VectorSource::Impl::getAttribution() const {
    if (!tileset) {
        return {};
    }
    return tileset->attribution;
}

const SourceTypeInfo* VectorSource::Impl::staticTypeInfo() noexcept {
    const static SourceTypeInfo typeInfo{
        "vector", SourceTypeInfo::TilePrefetch::Yes, SourceTypeInfo::TileSet::Yes, TileKind::Geometry};
    return &typeInfo;
}

} // namespace style
} // namespace mbgl