summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/custom_geometry_source_impl.cpp
blob: e456bd87191ddd215396818fb833a19e64b656b7 (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
34
35
36
37
#include <mbgl/style/sources/custom_geometry_source_impl.hpp>
#include <mbgl/style/source_observer.hpp>

namespace mbgl {
namespace style {

CustomGeometrySource::Impl::Impl(std::string id_, CustomGeometrySource::Options options)
    : Source::Impl(SourceType::CustomVector, std::move(id_)),
      tileOptions(makeMutable<CustomGeometrySource::TileOptions>(options.tileOptions)),
      zoomRange(options.zoomRange),
      loaderRef({}) {}

CustomGeometrySource::Impl::Impl(const Impl& impl, ActorRef<CustomTileLoader> loaderRef_)
    : Source::Impl(impl), tileOptions(impl.tileOptions), zoomRange(impl.zoomRange), loaderRef(loaderRef_) {}

bool CustomGeometrySource::Impl::operator!=(const Impl& other) const noexcept {
    return tileOptions != other.tileOptions || zoomRange != other.zoomRange || bool(loaderRef) != bool(other.loaderRef);
}

optional<std::string> CustomGeometrySource::Impl::getAttribution() const {
    return {};
}

Immutable<CustomGeometrySource::TileOptions> CustomGeometrySource::Impl::getTileOptions() const {
    return tileOptions;
}

Range<uint8_t> CustomGeometrySource::Impl::getZoomRange() const {
    return zoomRange;
}

optional<ActorRef<CustomTileLoader>> CustomGeometrySource::Impl::getTileLoader() const {
    return loaderRef;
}

} // namespace style
} // namespace mbgl