Home
last modified time | relevance | path

Searched refs:AnnotationManager (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_manager.cpp20 const std::string AnnotationManager::SourceID = "com.mapbox.annotations";
21 const std::string AnnotationManager::PointLayerID = "com.mapbox.annotations.points";
22 const std::string AnnotationManager::ShapeLayerID = "com.mapbox.annotations.shape.";
24 AnnotationManager::AnnotationManager(Style& style_) in AnnotationManager() function in mbgl::AnnotationManager
28 AnnotationManager::~AnnotationManager() = default;
30 void AnnotationManager::setStyle(Style& style_) { in setStyle()
34 void AnnotationManager::onStyleLoaded() { in onStyleLoaded()
38 AnnotationID AnnotationManager::addAnnotation(const Annotation& annotation) { in addAnnotation()
48 bool AnnotationManager::updateAnnotation(const AnnotationID& id, const Annotation& annotation) { in updateAnnotation()
56 void AnnotationManager::removeAnnotation(const AnnotationID& id) { in removeAnnotation()
[all …]
H A Dannotation_manager.hpp26 class AnnotationManager : private util::noncopyable { class
28 AnnotationManager(style::Style&);
29 ~AnnotationManager();
H A Dfill_annotation_impl.cpp19 auto newLayer = std::make_unique<FillLayer>(layerID, AnnotationManager::SourceID); in updateStyle()
21 layer = style.addLayer(std::move(newLayer), AnnotationManager::PointLayerID); in updateStyle()
H A Dline_annotation_impl.cpp19 auto newLayer = std::make_unique<LineLayer>(layerID, AnnotationManager::SourceID); in updateStyle()
22 layer = style.addLayer(std::move(newLayer), AnnotationManager::PointLayerID); in updateStyle()
H A Dannotation_tile.hpp9 class AnnotationManager;
18 AnnotationManager& annotationManager;
H A Dannotation_source.cpp13 : Source::Impl(SourceType::Annotations, AnnotationManager::SourceID) { in Impl()
H A Dshape_annotation_impl.cpp18 layerID(AnnotationManager::ShapeLayerID + util::toString(id)) { in ShapeAnnotationImpl()
H A Dannotation_tile.cpp13 : GeometryTile(overscaledTileID, AnnotationManager::SourceID, parameters), in AnnotationTile()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dtile_parameters.hpp10 class AnnotationManager;
22 AnnotationManager& annotationManager;
H A Dupdate_parameters.hpp16 class AnnotationManager;
35 AnnotationManager& annotationManager;
H A Drenderer.cpp59 options.layerIDs = {{ AnnotationManager::PointLayerID }}; in queryPointAnnotations()
H A Drenderer_impl.cpp753AnnotationManager::ShapeLayerID.begin(), AnnotationManager::ShapeLayerID.end()).second == Annotati… in queryShapeAnnotations()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dmap.cpp80 AnnotationManager annotationManager;