summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/custom_geometry_source_impl.hpp
diff options
context:
space:
mode:
authorAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-11-22 10:18:53 -0800
committerAsheem Mamoowala <asheem.mamoowala@mapbox.com>2017-11-22 13:56:38 -0800
commitacae19386129056b9425b114b01f062feecd297e (patch)
tree8b0db927fe5a78de3393f735d9317aba1034ba7e /src/mbgl/style/sources/custom_geometry_source_impl.hpp
parente3f1d8e3a0beb648ec90ac4d9baa5f27c6cf3935 (diff)
downloadqtlocation-mapboxgl-acae19386129056b9425b114b01f062feecd297e.tar.gz
[core] Custom Geometry Sources
Diffstat (limited to 'src/mbgl/style/sources/custom_geometry_source_impl.hpp')
-rw-r--r--src/mbgl/style/sources/custom_geometry_source_impl.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mbgl/style/sources/custom_geometry_source_impl.hpp b/src/mbgl/style/sources/custom_geometry_source_impl.hpp
new file mode 100644
index 0000000000..ce7187202d
--- /dev/null
+++ b/src/mbgl/style/sources/custom_geometry_source_impl.hpp
@@ -0,0 +1,29 @@
+#pragma once
+
+#include <mbgl/style/source_impl.hpp>
+#include <mbgl/style/sources/custom_geometry_source.hpp>
+#include <mbgl/style/custom_tile_loader.hpp>
+#include <mbgl/actor/actor_ref.hpp>
+
+namespace mbgl {
+namespace style {
+
+class CustomGeometrySource::Impl : public Source::Impl {
+public:
+ Impl(std::string id, CustomGeometrySource::Options options);
+ Impl(const Impl&, ActorRef<CustomTileLoader>);
+
+ optional<std::string> getAttribution() const final;
+
+ CustomGeometrySource::TileOptions getTileOptions() const;
+ Range<uint8_t> getZoomRange() const;
+ optional<ActorRef<CustomTileLoader>> getTileLoader() const;
+
+private:
+ CustomGeometrySource::TileOptions tileOptions;
+ Range<uint8_t> zoomRange;
+ optional<ActorRef<CustomTileLoader>> loaderRef;
+};
+
+} // namespace style
+} // namespace mbgl