Home
last modified time | relevance | path

Searched refs:ShapeAnnotationGeometry (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/include/
H A Dqmapbox.hpp51 struct Q_MAPBOXGL_EXPORT ShapeAnnotationGeometry { struct
60ShapeAnnotationGeometry(Type type_ = LineStringType, const CoordinatesCollections& geometry_ = Coo… in ShapeAnnotationGeometry() function
74 …LineAnnotation(const ShapeAnnotationGeometry& geometry_ = ShapeAnnotationGeometry(), float opacity… in LineAnnotation()
78 ShapeAnnotationGeometry geometry;
86 …FillAnnotation(const ShapeAnnotationGeometry& geometry_ = ShapeAnnotationGeometry(), float opacity… in FillAnnotation()
90 ShapeAnnotationGeometry geometry;
139 Q_DECLARE_METATYPE(QMapbox::ShapeAnnotationGeometry);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dshape_annotation_impl.hpp24 virtual const ShapeAnnotationGeometry& geometry() const = 0;
34 ShapeAnnotationGeometry operator()(const mbgl::LineString<double> &geom) const { in operator ()()
37 ShapeAnnotationGeometry operator()(const mbgl::MultiLineString<double> &geom) const { in operator ()()
40 ShapeAnnotationGeometry operator()(const mbgl::Polygon<double> &geom) const { in operator ()()
49 ShapeAnnotationGeometry operator()(const mbgl::MultiPolygon<double> &geom) const { in operator ()()
H A Dfill_annotation_impl.cpp12 …annotation(ShapeAnnotationGeometry::visit(annotation_.geometry, CloseShapeAnnotation{}), annotatio… in FillAnnotationImpl()
30 const ShapeAnnotationGeometry& FillAnnotationImpl::geometry() const { in geometry()
H A Dline_annotation_impl.cpp12 …annotation(ShapeAnnotationGeometry::visit(annotation_.geometry, CloseShapeAnnotation{}), annotatio… in LineAnnotationImpl()
31 const ShapeAnnotationGeometry& LineAnnotationImpl::geometry() const { in geometry()
H A Dfill_annotation_impl.hpp13 const ShapeAnnotationGeometry& geometry() const final;
H A Dline_annotation_impl.hpp13 const ShapeAnnotationGeometry& geometry() const final;
H A Dshape_annotation_impl.cpp26 features.emplace_back(ShapeAnnotationGeometry::visit(geometry(), [] (auto&& geom) { in updateTileData()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/annotation/
H A Dannotation.hpp28 using ShapeAnnotationGeometry = variant< typedef
36 LineAnnotation(ShapeAnnotationGeometry geometry_, in LineAnnotation()
45 ShapeAnnotationGeometry geometry;
53 FillAnnotation(ShapeAnnotationGeometry geometry_, in FillAnnotation()
62 ShapeAnnotationGeometry geometry;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp904 auto asMapboxGLGeometry = [](const QMapbox::ShapeAnnotationGeometry &geometry) { in asMapboxGLAnnotation()
905 mbgl::ShapeAnnotationGeometry result; in asMapboxGLAnnotation()
907 case QMapbox::ShapeAnnotationGeometry::LineStringType: in asMapboxGLAnnotation()
910 case QMapbox::ShapeAnnotationGeometry::PolygonType: in asMapboxGLAnnotation()
913 case QMapbox::ShapeAnnotationGeometry::MultiLineStringType: in asMapboxGLAnnotation()
916 case QMapbox::ShapeAnnotationGeometry::MultiPolygonType: in asMapboxGLAnnotation()