summaryrefslogtreecommitdiff
path: root/include/mbgl/style/sources/raster_source.hpp
blob: 395f25e51d60c9e6e553a9a51663217cd4b688f7 (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
#pragma once

#include <mbgl/style/source.hpp>
#include <mbgl/util/tileset.hpp>
#include <mbgl/util/variant.hpp>

namespace mbgl {
namespace style {

class RasterSource : public Source {
public:
    RasterSource(std::string id, variant<std::string, Tileset> urlOrTileset, uint16_t tileSize);

    optional<std::string> getURL() const;

    // Private implementation

    class Impl;
    Impl* const impl;
};

template <>
inline bool Source::is<RasterSource>() const {
    return type == SourceType::Raster;
}

} // namespace style
} // namespace mbgl