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

namespace mbgl {
namespace style {

RasterDEMSource::Impl::Impl(std::string id_, uint16_t tileSize_)
    : Source::Impl(SourceType::RasterDEM, std::move(id_)),
      tileSize(tileSize_) {
}

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

uint16_t RasterDEMSource::Impl::getTileSize() const {
    return tileSize;
}

optional<Tileset> RasterDEMSource::Impl::getTileset() const {
    return tileset;
}

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

} // namespace style
} // namespace mbgl