Home
last modified time | relevance | path

Searched refs:AnnotationTileLayer (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_tile.cpp75 AnnotationTileLayer::AnnotationTileLayer(std::shared_ptr<AnnotationTileLayerData> layer_) : layer(s… in AnnotationTileLayer() function in mbgl::AnnotationTileLayer
78 std::size_t AnnotationTileLayer::featureCount() const { in featureCount()
82 std::unique_ptr<GeometryTileFeature> AnnotationTileLayer::getFeature(std::size_t i) const { in getFeature()
86 std::string AnnotationTileLayer::getName() const { in getName()
90 void AnnotationTileLayer::addFeature(const AnnotationID id, in addFeature()
106 return std::make_unique<AnnotationTileLayer>(it->second); in getLayer()
111 std::unique_ptr<AnnotationTileLayer> AnnotationTileData::addLayer(const std::string& name) { in addLayer()
117 return std::make_unique<AnnotationTileLayer>(it->second); in addLayer()
H A Dannotation_tile.hpp39 class AnnotationTileLayer : public GeometryTileLayer { class
41 AnnotationTileLayer(std::shared_ptr<AnnotationTileLayerData>);
61 std::unique_ptr<AnnotationTileLayer> addLayer(const std::string&);
H A Dsymbol_annotation_impl.hpp34 class AnnotationTileLayer;
41 void updateLayer(const CanonicalTileID&, AnnotationTileLayer&) const;
H A Dsymbol_annotation_impl.cpp14 void SymbolAnnotationImpl::updateLayer(const CanonicalTileID& tileID, AnnotationTileLayer& layer) c… in updateLayer()