summaryrefslogtreecommitdiff
path: root/include/mbgl/style/sources/raster_source.hpp
blob: 2d1d648eecc3cff32f5eb39301b1aa8f0b899985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);

    // Private implementation

    class Impl;
};

} // namespace style
} // namespace mbgl