Home
last modified time | relevance | path

Searched refs:waypoints (Results 1 – 22 of 22) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeorouterequest.cpp220 QGeoRouteRequest::QGeoRouteRequest(const QList<QGeoCoordinate> &waypoints) in QGeoRouteRequest() argument
223 d_ptr->waypoints = waypoints; in QGeoRouteRequest()
233 d_ptr->waypoints.append(origin); in QGeoRouteRequest()
234 d_ptr->waypoints.append(destination); in QGeoRouteRequest()
286 void QGeoRouteRequest::setWaypoints(const QList<QGeoCoordinate> &waypoints) in setWaypoints() argument
288 d_ptr->waypoints = waypoints; in setWaypoints()
294 QList<QGeoCoordinate> QGeoRouteRequest::waypoints() const in waypoints() function in QGeoRouteRequest
296 return d_ptr->waypoints; in waypoints()
529 waypoints(other.waypoints), in QGeoRouteRequestPrivate()
544 return ((waypoints == other.waypoints) in operator ==()
H A Dqgeorouterequest.h107 explicit QGeoRouteRequest(const QList<QGeoCoordinate> &waypoints = QList<QGeoCoordinate>());
119 void setWaypoints(const QList<QGeoCoordinate> &waypoints);
120 QList<QGeoCoordinate> waypoints() const;
H A Dqgeorouterequest_p.h70 QList<QGeoCoordinate> waypoints; variable
H A Dqgeorouteparserosrmv5.cpp1029 const QList<QGeoCoordinate> waypoints = request.waypoints(); in requestUrl() local
1030 for (int i = 0; i < waypoints.size(); i++) { in requestUrl()
1031 const QGeoCoordinate &c = waypoints.at(i); in requestUrl()
H A Dqgeorouteparserosrmv4.cpp394 foreach (const QGeoCoordinate &c, request.waypoints()) { in requestUrl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/
H A Dtst_qgeorouterequest.cpp67 QList<QGeoCoordinate> waypoints; in constructor_waypoints() local
68 waypoints.append(*qgeocoord1); in constructor_waypoints()
69 waypoints.append(*qgeocoord2); in constructor_waypoints()
70 waypoints.append(*qgeocoord3); in constructor_waypoints()
72 QGeoRouteRequest *copy = new QGeoRouteRequest(waypoints); in constructor_waypoints()
74 QCOMPARE(copy->waypoints(), waypoints); in constructor_waypoints()
94 QList<QGeoCoordinate> waypoints; in constructor_orig_dest() local
95 waypoints.append(*qgeocoord1); in constructor_orig_dest()
96 waypoints.append(*qgeocoord2); in constructor_orig_dest()
98 QCOMPARE(copy->waypoints(), waypoints); in constructor_orig_dest()
[all …]
H A Dtst_qgeorouterequest.h69 void waypoints();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_routing.qml177 compare (emptyQuery.waypoints.length, 0, "Waypoints")
224 compare(emptyQuery.waypoints.length, 2)
228 compare(emptyQuery.waypoints.length, 1)
236 compare(emptyQuery.waypoints.length, 0)
237 // Check correct ordering of waypoints
244 compare(emptyQuery.waypoints[0], coordinate1)
245 compare(emptyQuery.waypoints[1], coordinate2)
246 compare(emptyQuery.waypoints[2], coordinate1)
247 compare(emptyQuery.waypoints[3], coordinate2)
249 compare(emptyQuery.waypoints[0], coordinate1)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroutemodel.cpp73 static int findWaypoint(const QList<QDeclarativeGeoWaypoint *> &waypoints, const QDeclarativeGeoWay… in findWaypoint() argument
75 for (int i = waypoints.size() - 1; i >= 0; --i) { in findWaypoint()
76 if (waypoints.at(i) == w || *waypoints.at(i) == *w) in findWaypoint()
82 static int findWaypoint(const QList<QDeclarativeGeoWaypoint *> &waypoints, const QGeoCoordinate &c) in findWaypoint() argument
84 for (int i = waypoints.size() - 1; i >= 0; --i) { in findWaypoint()
85 if (waypoints.at(i)->coordinate() == c) in findWaypoint()
91 static QList<QGeoCoordinate> waypointCoordinates(const QList<QDeclarativeGeoWaypoint *> &waypoints) in waypointCoordinates() argument
94 for (const QDeclarativeGeoWaypoint *w: waypoints) in waypointCoordinates()
99 static QList<QVariantMap> waypointMetadata(const QList<QDeclarativeGeoWaypoint *> &waypoints) in waypointMetadata() argument
102 for (QDeclarativeGeoWaypoint *w: waypoints) in waypointMetadata()
[all …]
H A Dqdeclarativegeoroutemodel_p.h295 Q_PROPERTY(QVariantList waypoints READ waypoints WRITE setWaypoints NOTIFY waypointsChanged)
376 QVariantList waypoints();
387 void flushWaypoints(QList<QDeclarativeGeoWaypoint *> &waypoints);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutereply/
H A Dtst_qgeoroutereply.cpp39 waypoints.append(*qgeocoordinate1); in initTestCase()
40 waypoints.append(*qgeocoordinate2); in initTestCase()
41 waypoints.append(*qgeocoordinate3); in initTestCase()
43 qgeorouterequest = new QGeoRouteRequest(waypoints); in initTestCase()
H A Dtst_qgeoroutereply.h86 QList<QGeoCoordinate> waypoints; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/
H A Dqml-maps.qdoc123 from one place to a destination with possible waypoints along the route. The
131 selection criteria and adding any required waypoints.
156 \li \l {RouteQuery::}{waypoints}
157 \li A list of waypoints
172 of the route, some waypoints and the destination. All of these locations are
173 waypoints so the locations from start to finish will be entered as a sequence
174 of waypoints. Then other query properties can be set that may be specific to
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutingmanagerengine_nokia.cpp237 const QList<QGeoCoordinate> waypoints = request.waypoints(); in calculateRouteRequestString() local
238 int numWaypoints = waypoints.size(); in calculateRouteRequestString()
243 const QGeoCoordinate &c = waypoints.at(i); in calculateRouteRequestString()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/routing/
H A Dtst_routing.cpp342 QList<QGeoCoordinate> waypoints; in initTestCase() local
343 waypoints.push_back(QGeoCoordinate(1, 1)); in initTestCase()
344 waypoints.push_back(QGeoCoordinate(2, 2)); in initTestCase()
345 m_dummyRequest.setWaypoints(waypoints); in initTestCase()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeoroutingmanagerengine_esri.cpp84 foreach (const QGeoCoordinate &coordinate, request.waypoints()) in calculateRoute()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/
H A Dqgeoroutingmanagerengine_test.h178 route.setPath(request.waypoints()); in setRoutes()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/declarative/
H A Drouting.qml68 waypoints: [
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.11.072 QGeoCoordinate as mean to specify waypoints in a RouteQuery.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map_itemview.qml200 waypoints: [
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DMapComponent.qml235 // add the start and end coords as waypoints on the route
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/location/
H A Dplugins.qmltypes942 Property { name: "waypoints"; type: "QVariantList" }