Home
last modified time | relevance | path

Searched refs:QGeoPath (Results 1 – 25 of 36) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeopath.cpp92 inline QGeoPathPrivate *QGeoPath::d_func() in d_func()
97 inline const QGeoPathPrivate *QGeoPath::d_func() const in d_func()
106 QMetaType::registerConverter<QGeoShape, QGeoPath>(); in PathVariantConversions()
107 QMetaType::registerConverter<QGeoPath, QGeoShape>(); in PathVariantConversions()
116 QGeoPath::QGeoPath() in Q_GLOBAL_STATIC()
126 QGeoPath::QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width) in QGeoPath() function in QGeoPath
135 QGeoPath::QGeoPath(const QGeoPath &other) in QGeoPath() function in QGeoPath
144 QGeoPath::QGeoPath(const QGeoShape &other) in QGeoPath() function in QGeoPath
155 QGeoPath::~QGeoPath() {} in ~QGeoPath()
160 QGeoPath &QGeoPath::operator=(const QGeoPath &other) in operator =()
[all …]
H A Dqgeopath.h51 class Q_POSITIONING_EXPORT QGeoPath : public QGeoShape
58 QGeoPath();
59 QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width = 0.0);
60 QGeoPath(const QGeoPath &other);
61 QGeoPath(const QGeoShape &other);
63 ~QGeoPath();
65 QGeoPath &operator=(const QGeoPath &other);
68 bool operator==(const QGeoPath &other) const;
71 bool operator!=(const QGeoPath &other) const;
83 Q_INVOKABLE QGeoPath translated(double degreesLatitude, double degreesLongitude) const;
[all …]
H A Dqgeoshape.cpp381 QGeoPath p = shape; in operator <<()
431 shape = QGeoPath(l); in operator >>()
H A Dqgeopath_p.h255 class Q_POSITIONING_PRIVATE_EXPORT QGeoPathEager : public QGeoPath
262 QGeoPathEager(const QGeoPath &other);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopath/
H A Dtst_qgeopath.cpp70 QGeoPath p; in defaultConstructor()
83 QGeoPath p(coords, 1.0); in listConstructor()
94 QGeoPath p1; in assignment()
99 QGeoPath p2(coords, 1.0); in assignment()
114 QGeoPath p3 = area; in assignment()
134 QGeoPath c1(coords, qreal(50.0)); in comparison()
135 QGeoPath c2(coords, qreal(50.0)); in comparison()
136 QGeoPath c3(coords, qreal(35.0)); in comparison()
137 QGeoPath c4(coords2, qreal(50.0)); in comparison()
166 QGeoPath c; in type()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/
H A Dlocationsingleton.cpp212 QGeoPath LocationSingleton::path() const in path()
214 return QGeoPath(); in path()
225 QGeoPath LocationSingleton::path(const QJSValue &value, qreal width) const in path()
244 return QGeoPath(pathList, width); in path()
345 QGeoPath LocationSingleton::shapeToPath(const QGeoShape &shape) const in shapeToPath()
347 return QGeoPath(shape); in shapeToPath()
H A Dlocationsingleton.h89 Q_INVOKABLE QGeoPath path() const;
90 Q_INVOKABLE QGeoPath path(const QJSValue &value, qreal width = 0.0) const;
98 Q_INVOKABLE QGeoPath shapeToPath(const QGeoShape &shape) const;
H A Dpositioning.cpp585 qRegisterMetaType<QGeoPath>(); in registerTypes()
586 QMetaType::registerEqualsComparator<QGeoPath>(); in registerTypes()
H A Dplugins.qmltypes64 Method { name: "path"; type: "QGeoPath" }
67 type: "QGeoPath"
73 type: "QGeoPath"
100 type: "QGeoPath"
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.10.035 * Added setPath overload taking a QGeoPath.
57 - QGeoPath:
58 * Add ::size() to QGeoPath to retrieve the number of coordinates in the
H A Dchanges-5.11.328 - [QTBUG-71355] Fixed crash when calling QGeoPath::length() on empty
29 QGeoPath instance.
H A Dchanges-5.12.324 - Documented QGeoPath::length behavior properly.
H A Dchanges-5.9.037 - Added QGeoPath as a new geo shape.
55 - QDeclarativeGeoMap::setVisibleRegion now handles QGeoPath as well.
H A Dchanges-5.12.046 - [QTBUG-62875] QGeoPath can now be cleared directly using clearPath.
H A Dchanges-5.11.051 - QGeoPath
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/
H A Dqgeojson.cpp573 static QGeoPath importLineString(const QVariantMap &inputMap) in importLineString()
575 QGeoPath returnedObject; in importLineString()
615 QGeoPath parsedLineString; in importMultiLineString()
806 …oCoordinate> linestringPath = lineStringMap.value(QStringLiteral("data")).value<QGeoPath>().path(); in exportLineString()
851 …<< multiPathList.at(i).value<QVariantMap>().value(QStringLiteral("data")).value<QGeoPath>().path(); in exportMultiLineString()
1016 QGeoPath lineString = importLineString(rootGeoJsonObject); in importGeoJson()
1150 QGeoPath path(shape); in operator <<()
1217 QGeoPath path = v.value<QGeoPath>(); in printQvariant()
H A Dqmappolylineobject.cpp133 return QGeoPath(path()); in geoShape()
138 const QGeoPath p(shape); in setGeoShape()
H A Dqgeotiledmaplabs.cpp111 QGeoPath path = o->geoShape(); in mapObjectsAt()
116 QGeoPath path = o->geoShape(); in mapObjectsAt()
H A Dqmappolylineobject_p_p.h99 QGeoPath m_path; // small overhead compared to plain QList<QGeoCoordinate>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativepolylinemapitem_p.h124 Q_INVOKABLE void setPath(const QGeoPath &path);
155 QGeoPath m_geopath;
H A Dqdeclarativepolylinemapitem.cpp777 QGeoPath p(poly.path()); in updateSourcePoints()
783 void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPath &poly) in updateSourcePoints()
841 const QGeoPath path(QDeclarativeRectangleMapItemPrivateCPU::perimeter(rect)); in updateSourcePoints()
1026 void QDeclarativePolylineMapItem::setPath(const QGeoPath &path) in setPath()
1391 …const QGeoPath geopath(shape); // if shape isn't a path, path will be created as a default-constru… in setGeoShape()
H A Dqdeclarativepolylinemapitem_p_p.h289 const QGeoPath &poly);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/itemsoverlay/
H A Dqgeomapitemsoverlay.cpp217 QGeoPath path = o->geoShape(); in mapObjectsAt()
222 QGeoPath path = o->geoShape(); in mapObjectsAt()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqmapboxglstylechange.cpp151 const QGeoPath *path = static_cast<const QGeoPath *>(&mapItem->geoShape()); in featureFromMapPolyline()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutexmlparser.cpp309 m_legs[i].setBounds(QGeoPath(path).boundingGeoRectangle()); in postProcessRoute()

12