summaryrefslogtreecommitdiff
path: root/include/mbgl/layermanager/location_indicator_layer_factory.hpp
blob: 8d8e3b9a40c38c58df7558ca9458d607b3d2b79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <mbgl/layermanager/layer_factory.hpp>

namespace mbgl {

class LocationIndicatorLayerFactory : public LayerFactory {
protected:
    const style::LayerTypeInfo* getTypeInfo() const noexcept final;
    std::unique_ptr<style::Layer> createLayer(const std::string& id,
                                              const style::conversion::Convertible& value) noexcept final;
    std::unique_ptr<RenderLayer> createRenderLayer(Immutable<style::Layer::Impl>) noexcept final;
};

} // namespace mbgl