Home
last modified time | relevance | path

Searched refs:LineAnnotation (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/annotation/
H A Dannotation.hpp34 class LineAnnotation { class
36 LineAnnotation(ShapeAnnotationGeometry geometry_, in LineAnnotation() function in mbgl::LineAnnotation
70 LineAnnotation,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dline_annotation_impl.hpp10 LineAnnotationImpl(AnnotationID, LineAnnotation);
16 const LineAnnotation annotation;
H A Dannotation_manager.hpp53 void add(const AnnotationID&, const LineAnnotation&);
57 void update(const AnnotationID&, const LineAnnotation&);
H A Dline_annotation_impl.cpp10 LineAnnotationImpl::LineAnnotationImpl(AnnotationID id_, LineAnnotation annotation_) in LineAnnotationImpl()
H A Dannotation_manager.cpp68 void AnnotationManager::add(const AnnotationID& id, const LineAnnotation& annotation) { in add()
97 void AnnotationManager::update(const AnnotationID& id, const LineAnnotation& annotation) { in update()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapbox.hpp72 struct Q_MAPBOXGL_EXPORT LineAnnotation { struct
74LineAnnotation(const ShapeAnnotationGeometry& geometry_ = ShapeAnnotationGeometry(), float opacity… in LineAnnotation() function
140 Q_DECLARE_METATYPE(QMapbox::LineAnnotation);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp927 } else if (annotation.canConvert<QMapbox::LineAnnotation>()) { in asMapboxGLAnnotation()
928 QMapbox::LineAnnotation lineAnnotation = annotation.value<QMapbox::LineAnnotation>(); in asMapboxGLAnnotation()
930 …return { mbgl::LineAnnotation(asMapboxGLGeometry(lineAnnotation.geometry), lineAnnotation.opacity,… in asMapboxGLAnnotation()