| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorectangle/ |
| H A D | tst_qgeorectangle.cpp | 108 QGeoRectangle b1 = QGeoRectangle(QGeoCoordinate(5.0, 5.0), 10.0, 10.0); in center_constructor() 110 QCOMPARE(b1.topLeft(), QGeoCoordinate(10.0, 0.0)); in center_constructor() 111 QCOMPARE(b1.bottomRight(), QGeoCoordinate(0.0, 10.0)); in center_constructor() 116 QGeoRectangle b1 = QGeoRectangle(QGeoCoordinate(10.0, 0.0), in corner_constructor() 117 QGeoCoordinate(0.0, 10.0)); in corner_constructor() 119 QCOMPARE(b1.topLeft(), QGeoCoordinate(10.0, 0.0)); in corner_constructor() 120 QCOMPARE(b1.bottomRight(), QGeoCoordinate(0.0, 10.0)); in corner_constructor() 125 QList<QGeoCoordinate> coordinates; in list_constructor() 129 coordinates << QGeoCoordinate(10.0, 0.0); in list_constructor() 134 coordinates << QGeoCoordinate(0.0, 10.0) << QGeoCoordinate(0.0, 5.0); in list_constructor() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocoordinate/ |
| H A D | tst_qgeocoordinate.cpp | 43 Q_DECLARE_METATYPE(QGeoCoordinate::CoordinateFormat) 44 Q_DECLARE_METATYPE(QGeoCoordinate::CoordinateType) 46 static const QGeoCoordinate BRISBANE(-27.46758, 153.027892); 47 static const QGeoCoordinate MELBOURNE(-37.814251, 144.963169); 48 static const QGeoCoordinate LONDON(51.500152, -0.126236); 49 static const QGeoCoordinate NEW_YORK(40.71453, -74.00713); 50 static const QGeoCoordinate NORTH_POLE(90, 0); 51 static const QGeoCoordinate SOUTH_POLE(-90, 0); 84 qRegisterMetaType<QGeoCoordinate>(); in initTestcase() 85 QMetaType::registerEqualsComparator<QGeoCoordinate>(); in initTestcase() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopath/ |
| H A D | tst_qgeopath.cpp | 78 QList<QGeoCoordinate> coords; in listConstructor() 79 coords.append(QGeoCoordinate(1,1)); in listConstructor() 80 coords.append(QGeoCoordinate(2,2)); in listConstructor() 81 coords.append(QGeoCoordinate(3,0)); in listConstructor() 87 for (const QGeoCoordinate &c : coords) { in listConstructor() 95 QList<QGeoCoordinate> coords; in assignment() 96 coords.append(QGeoCoordinate(1,1)); in assignment() 97 coords.append(QGeoCoordinate(2,2)); in assignment() 98 coords.append(QGeoCoordinate(3,0)); in assignment() 126 QList<QGeoCoordinate> coords; in comparison() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopolygon/ |
| H A D | tst_qgeopolygon.cpp | 78 QList<QGeoCoordinate> coords; in listConstructor() 79 coords.append(QGeoCoordinate(1,1)); in listConstructor() 80 coords.append(QGeoCoordinate(2,2)); in listConstructor() 87 coords.append(QGeoCoordinate(3,0)); in listConstructor() 96 for (const QGeoCoordinate &c : coords) { in listConstructor() 105 QList<QGeoCoordinate> coords; in assignment() 106 coords.append(QGeoCoordinate(1,1)); in assignment() 107 coords.append(QGeoCoordinate(2,2)); in assignment() 108 coords.append(QGeoCoordinate(3,0)); in assignment() 128 p1.addCoordinate(QGeoCoordinate(4,0)); in assignment() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocircle/ |
| H A D | tst_qgeocircle.cpp | 85 QGeoCircle c(QGeoCoordinate(1,1), qreal(50.0)); in centerRadiusConstructor() 86 QCOMPARE(c.center(), QGeoCoordinate(1,1)); in centerRadiusConstructor() 92 QGeoCircle c1 = QGeoCircle(QGeoCoordinate(10.0, 0.0), 20.0); in assignment() 93 QGeoCircle c2 = QGeoCircle(QGeoCoordinate(20.0, 0.0), 30.0); in assignment() 98 QCOMPARE(c2.center(), QGeoCoordinate(10.0, 0.0)); in assignment() 102 c2.setCenter(QGeoCoordinate(30.0, 0.0)); in assignment() 104 QCOMPARE(c1.center(), QGeoCoordinate(10.0, 0.0)); in assignment() 118 c1.setCenter(QGeoCoordinate(15.0, 15.0)); in assignment() 125 QGeoCircle c1(QGeoCoordinate(1,1), qreal(50.0)); in comparison() 126 QGeoCircle c2(QGeoCoordinate(1,1), qreal(50.0)); in comparison() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeocoordinate.cpp | 59 qRegisterMetaTypeStreamOperators<QGeoCoordinate>(); in CoordinateStreamOperators() 62 QMetaType::registerDebugStreamOperator<QGeoCoordinate>(); in CoordinateStreamOperators() 218 QGeoCoordinate::QGeoCoordinate() in QGeoCoordinate() function in QGeoCoordinate 235 QGeoCoordinate::QGeoCoordinate(double latitude, double longitude) in QGeoCoordinate() function in QGeoCoordinate 260 QGeoCoordinate::QGeoCoordinate(double latitude, double longitude, double altitude) in QGeoCoordinate() function in QGeoCoordinate 277 QGeoCoordinate::QGeoCoordinate(const QGeoCoordinate &other) in QGeoCoordinate() function in QGeoCoordinate 284 QGeoCoordinate &QGeoCoordinate::operator=(const QGeoCoordinate &other) in operator =() 296 QGeoCoordinate::~QGeoCoordinate() in ~QGeoCoordinate() 306 bool QGeoCoordinate::operator==(const QGeoCoordinate &other) const in operator ==() 331 bool QGeoCoordinate::isValid() const in isValid() [all …]
|
| H A D | qgeocoordinate.h | 54 class Q_POSITIONING_EXPORT QGeoCoordinate 81 QGeoCoordinate(); 82 QGeoCoordinate(double latitude, double longitude); 83 QGeoCoordinate(double latitude, double longitude, double altitude); 84 QGeoCoordinate(const QGeoCoordinate &other); 85 ~QGeoCoordinate(); 87 QGeoCoordinate &operator=(const QGeoCoordinate &other); 89 bool operator==(const QGeoCoordinate &other) const; 90 inline bool operator!=(const QGeoCoordinate &other) const { 106 Q_INVOKABLE qreal distanceTo(const QGeoCoordinate &other) const; [all …]
|
| H A D | qgeorectangle.h | 52 Q_PROPERTY(QGeoCoordinate bottomLeft READ bottomLeft WRITE setBottomLeft) 53 Q_PROPERTY(QGeoCoordinate bottomRight READ bottomRight WRITE setBottomRight) 54 Q_PROPERTY(QGeoCoordinate topLeft READ topLeft WRITE setTopLeft) 55 Q_PROPERTY(QGeoCoordinate topRight READ topRight WRITE setTopRight) 56 Q_PROPERTY(QGeoCoordinate center READ center WRITE setCenter) 62 QGeoRectangle(const QGeoCoordinate ¢er, double degreesWidth, double degreesHeight); 63 QGeoRectangle(const QGeoCoordinate &topLeft, const QGeoCoordinate &bottomRight); 64 QGeoRectangle(const QList<QGeoCoordinate> &coordinates); 78 void setTopLeft(const QGeoCoordinate &topLeft); 79 QGeoCoordinate topLeft() const; [all …]
|
| H A D | qgeopath_p.h | 63 inline static void computeBBox( const QList<QGeoCoordinate> &m_path, in computeBBox() 88 const QGeoCoordinate &geoFrom = m_path.at(i-1); in computeBBox() 89 const QGeoCoordinate &geoTo = m_path.at(i); in computeBBox() 115 m_bbox = QGeoRectangle(QGeoCoordinate(m_maxLati, m_path.at(minId).longitude()), in computeBBox() 116 QGeoCoordinate(m_minLati, m_path.at(maxId).longitude())); in computeBBox() 119 inline static void updateBBox( const QList<QGeoCoordinate> &m_path, in updateBBox() 139 m_bbox = QGeoRectangle(QGeoCoordinate(m_maxLati, m_path.at(0).longitude()), in updateBBox() 140 QGeoCoordinate(m_minLati, m_path.at(0).longitude())); in updateBBox() 147 const QGeoCoordinate &geoFrom = m_path.at(m_path.size()-2); in updateBBox() 148 const QGeoCoordinate &geoTo = m_path.last(); in updateBBox() [all …]
|
| H A D | qgeopolygon.cpp | 125 QGeoPolygon::QGeoPolygon(const QList<QGeoCoordinate> &path) in QGeoPolygon() 140 static void calculatePeripheralPoints(QList<QGeoCoordinate> &path, in calculatePeripheralPoints() 144 const QGeoCoordinate ¢er = circle.center(); in calculatePeripheralPoints() 171 path << QGeoCoordinate(lat2, lon2, center.altitude()); in calculatePeripheralPoints() 186 QList<QGeoCoordinate> perimeter; in QGeoPolygon() 191 QList<QGeoCoordinate> perimeter; in QGeoPolygon() 235 void QGeoPolygon::setPath(const QList<QGeoCoordinate> &path) in setPath() 244 const QList<QGeoCoordinate> &QGeoPolygon::path() const in path() 260 QList<QGeoCoordinate> p; in setPerimeter() 262 if (c.canConvert<QGeoCoordinate>()) in setPerimeter() [all …]
|
| H A D | qgeorectangle.cpp | 223 QGeoRectangle::QGeoRectangle(const QGeoCoordinate ¢er, double degreesWidth, double degreesHeigh… in QGeoRectangle() 235 QGeoRectangle::QGeoRectangle(const QGeoCoordinate &topLeft, const QGeoCoordinate &bottomRight) in QGeoRectangle() 244 QGeoRectangle::QGeoRectangle(const QList<QGeoCoordinate> &coordinates) in QGeoRectangle() 250 const QGeoCoordinate &startCoordinate = coordinates.first(); in QGeoRectangle() 253 foreach (const QGeoCoordinate &coordinate, coordinates) { in QGeoRectangle() 333 void QGeoRectangle::setTopLeft(const QGeoCoordinate &topLeft) in setTopLeft() 343 QGeoCoordinate QGeoRectangle::topLeft() const in topLeft() 353 void QGeoRectangle::setTopRight(const QGeoCoordinate &topRight) in setTopRight() 364 QGeoCoordinate QGeoRectangle::topRight() const in topRight() 368 return QGeoCoordinate(); in topRight() [all …]
|
| H A D | qgeopath.cpp | 126 QGeoPath::QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width) in QGeoPath() 187 void QGeoPath::setPath(const QList<QGeoCoordinate> &path) in setPath() 196 const QList<QGeoCoordinate> &QGeoPath::path() const in path() 221 QList<QGeoCoordinate> p; in setVariantPath() 223 if (c.canConvert<QGeoCoordinate>()) in setVariantPath() 224 p << c.value<QGeoCoordinate>(); in setVariantPath() 320 void QGeoPath::addCoordinate(const QGeoCoordinate &coordinate) in addCoordinate() 329 void QGeoPath::insertCoordinate(int index, const QGeoCoordinate &coordinate) in insertCoordinate() 338 void QGeoPath::replaceCoordinate(int index, const QGeoCoordinate &coordinate) in replaceCoordinate() 347 QGeoCoordinate QGeoPath::coordinateAt(int index) const in coordinateAt() [all …]
|
| H A D | qgeocircle.cpp | 134 QGeoCircle::QGeoCircle(const QGeoCoordinate ¢er, qreal radius) in QGeoCircle() 207 void QGeoCircle::setCenter(const QGeoCoordinate ¢er) in setCenter() 217 QGeoCoordinate QGeoCircle::center() const in center() 244 bool QGeoCirclePrivate::contains(const QGeoCoordinate &coordinate) const in contains() 257 QGeoCoordinate QGeoCirclePrivate::center() const in center() 282 m_bbox = QGeoRectangle(QGeoCoordinate(90.0, -180.0), QGeoCoordinate(-90.0, 180.0)); in updateBoundingBox() 285 …m_bbox = QGeoRectangle(QGeoCoordinate(90.0, -180.0), QGeoCoordinate(m_center.atDistanceAndAzimuth(… in updateBoundingBox() 287 …m_bbox = QGeoRectangle(QGeoCoordinate(m_center.atDistanceAndAzimuth(m_radius, 0.0).latitude(), -18… in updateBoundingBox() 318 QGeoCoordinate topLeft; in updateBoundingBox() 321 QGeoCoordinate bottomRight; in updateBoundingBox() [all …]
|
| H A D | qgeopolygon.h | 48 class QGeoCoordinate; variable 58 QGeoPolygon(const QList<QGeoCoordinate> &path); 72 void setPath(const QList<QGeoCoordinate> &path); // ### Qt6: rename into setPerimeter 73 const QList<QGeoCoordinate> &path() const; 76 void addHole(const QList<QGeoCoordinate> &holePath); 78 const QList<QGeoCoordinate> holePath(int index) const; 85 Q_INVOKABLE void addCoordinate(const QGeoCoordinate &coordinate); 86 Q_INVOKABLE void insertCoordinate(int index, const QGeoCoordinate &coordinate); 87 Q_INVOKABLE void replaceCoordinate(int index, const QGeoCoordinate &coordinate); 88 Q_INVOKABLE QGeoCoordinate coordinateAt(int index) const; [all …]
|
| H A D | qgeopath.h | 48 class QGeoCoordinate; variable 59 QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width = 0.0); 73 void setPath(const QList<QGeoCoordinate> &path); 74 const QList<QGeoCoordinate> &path() const; 86 Q_INVOKABLE void addCoordinate(const QGeoCoordinate &coordinate); 87 Q_INVOKABLE void insertCoordinate(int index, const QGeoCoordinate &coordinate); 88 Q_INVOKABLE void replaceCoordinate(int index, const QGeoCoordinate &coordinate); 89 Q_INVOKABLE QGeoCoordinate coordinateAt(int index) const; 90 Q_INVOKABLE bool containsCoordinate(const QGeoCoordinate &coordinate) const; 91 Q_INVOKABLE void removeCoordinate(const QGeoCoordinate &coordinate);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/ |
| H A D | locationsingleton.cpp | 45 static QGeoCoordinate parseCoordinate(const QJSValue &value, bool *ok) in parseCoordinate() 47 QGeoCoordinate c; in parseCoordinate() 94 QGeoCoordinate LocationSingleton::coordinate() const in coordinate() 96 return QGeoCoordinate(); in coordinate() 107 QGeoCoordinate LocationSingleton::coordinate(double latitude, double longitude, double altitude) co… in coordinate() 109 return QGeoCoordinate(latitude, longitude, altitude); in coordinate() 144 QGeoRectangle LocationSingleton::rectangle(const QGeoCoordinate ¢er, in rectangle() 158 QGeoRectangle LocationSingleton::rectangle(const QGeoCoordinate &topLeft, in rectangle() 159 const QGeoCoordinate &bottomRight) const in rectangle() 174 QList<QGeoCoordinate> internalCoordinates; in rectangle() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qgeosimplify_p.h | 63 static double getDist(const QGeoCoordinate &p1, const QGeoCoordinate &p2); 70 static QGeoCoordinate closestPoint( const QGeoCoordinate &pc, 71 const QGeoCoordinate &ac, 72 const QGeoCoordinate &bc, 76 static double getSegDist(const QGeoCoordinate &pc, 77 const QGeoCoordinate &ac, 78 const QGeoCoordinate &bc, 87 static void simplifyDPStep(const QList<QGeoCoordinate> &points, 92 QList<QGeoCoordinate> &simplified); 113 static QList<QGeoCoordinate> simplifyDouglasPeucker(const QList<QGeoCoordinate> &points, [all …]
|
| H A D | locationvaluetypehelper.cpp | 45 QGeoCoordinate parseCoordinate(const QJSValue &value, bool *ok) in parseCoordinate() 47 QGeoCoordinate c; in parseCoordinate() 66 QGeoCoordinate parseCoordinate(const QVariant &value, bool *ok) in parseCoordinate() 68 QGeoCoordinate c; in parseCoordinate() 72 if (value.canConvert<QGeoCoordinate>()) { in parseCoordinate() 73 c = value.value<QGeoCoordinate>(); in parseCoordinate() 101 QGeoCoordinate c = parseCoordinate(value.property(QStringLiteral("bottomLeft")), ok); in parseRectangle() 106 QGeoCoordinate c = parseCoordinate(value.property(QStringLiteral("bottomRight")), ok); in parseRectangle() 111 QGeoCoordinate c = parseCoordinate(value.property(QStringLiteral("topLeft")), ok); in parseRectangle() 116 QGeoCoordinate c = parseCoordinate(value.property(QStringLiteral("topRight")), ok); in parseRectangle() [all …]
|
| H A D | qgeosimplify.cpp | 47 double QGeoSimplify::getDist(const QGeoCoordinate &p1, const QGeoCoordinate &p2) in getDist() 66 QGeoCoordinate QGeoSimplify::closestPoint(const QGeoCoordinate &pc, const QGeoCoordinate &ac, const… in closestPoint() 84 const QGeoCoordinate closest = QWebMercator::mercatorToCoord(intersection); in closestPoint() 88 double QGeoSimplify::getSegDist(const QGeoCoordinate &pc, const QGeoCoordinate &ac, const QGeoCoord… in getSegDist() 90 const QGeoCoordinate closest = closestPoint(pc, ac, bc, leftBound); in getSegDist() 101 …DPStep(const QList<QGeoCoordinate> &points, const double &leftBound, int first, int last, double o… in simplifyDPStep() 196 static QGeoCoordinate unwrappedToGeo(QDoubleVector2D p, double leftBound) in unwrappedToGeo() 210 const QGeoCoordinate firstC = unwrappedToGeo(points.at(first), leftBound); in simplifyDPStepZL() 211 const QGeoCoordinate lastC = unwrappedToGeo(points.at(last), leftBound); in simplifyDPStepZL() 247 QList<QGeoCoordinate> QGeoSimplify::simplifyDouglasPeucker(const QList<QGeoCoordinate> &points, in simplifyDouglasPeucker() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchrequest/ |
| H A D | tst_qplacesearchrequest.cpp | 100 circle.setCenter(QGeoCoordinate(30,20)); in boundingCircleTest() 109 QVERIFY2(retrievedCircle.center() == QGeoCoordinate(30,20), "Wrong value returned"); in boundingCircleTest() 121 box.setTopLeft(QGeoCoordinate(30,20)); in boundingBoxTest() 122 box.setBottomRight(QGeoCoordinate(10,50)); in boundingBoxTest() 130 QVERIFY2(retrievedBox.topLeft() == QGeoCoordinate(30,20), "Wrong value returned"); in boundingBoxTest() 131 QVERIFY2(retrievedBox.bottomRight() == QGeoCoordinate(10,50), "Wrong value returned"); in boundingBoxTest() 142 circle.setCenter(QGeoCoordinate(30,20)); in searchAreaTest() 148 box.setTopLeft(QGeoCoordinate(30,20)); in searchAreaTest() 149 box.setBottomRight(QGeoCoordinate(10,50)); in searchAreaTest() 198 QGeoRectangle b1(QGeoCoordinate(20,20), QGeoCoordinate(10,30)); in operatorsTest() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/ |
| H A D | qquickgeocoordinateanimation.cpp | 72 QVariant q_coordinateInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal progr… in q_coordinateInterpolator() 82 QGeoCoordinate result = QWebMercator::coordinateInterpolation(from, to, progress); in q_coordinateInterpolator() 87 QVariant q_coordinateShortestInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qre… in q_coordinateShortestInterpolator() 119 QGeoCoordinate result = QWebMercator::mercatorToCoord(QDoubleVector2D(x, y)); in q_coordinateShortestInterpolator() 124 QVariant q_coordinateWestInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal p… in q_coordinateWestInterpolator() 148 QGeoCoordinate result = QWebMercator::mercatorToCoord(QDoubleVector2D(x, y)); in q_coordinateWestInterpolator() 154 QVariant q_coordinateEastInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal p… in q_coordinateEastInterpolator() 178 QGeoCoordinate result = QWebMercator::mercatorToCoord(QDoubleVector2D(x, y)); in q_coordinateEastInterpolator() 189 d->interpolatorType = qMetaTypeId<QGeoCoordinate>(); in QQuickGeoCoordinateAnimation() 202 QGeoCoordinate QQuickGeoCoordinateAnimation::from() const in from() [all …]
|
| H A D | qquickgeocoordinateanimation_p.h | 66 Q_PROPERTY(QGeoCoordinate from READ from WRITE setFrom) 67 Q_PROPERTY(QGeoCoordinate to READ to WRITE setTo) 81 QGeoCoordinate from() const; 82 void setFrom(const QGeoCoordinate &); 84 QGeoCoordinate to() const; 85 void setTo(const QGeoCoordinate &); 94 …INGQUICK_PRIVATE_EXPORT q_coordinateInterpolator(const QGeoCoordinate &from, const QGeoCoordinate …
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeoprojection_p.h | 100 …virtual QGeoCoordinate itemPositionToCoordinate(const QDoubleVector2D &pos, bool clipToViewport = … 101 …virtual QDoubleVector2D coordinateToItemPosition(const QGeoCoordinate &coordinate, bool clipToView… 108 …virtual QGeoCoordinate anchorCoordinateToPoint(const QGeoCoordinate &coordinate, const QPointF &an… 111 virtual bool setBearing(qreal bearing, const QGeoCoordinate &coordinate); 146 …QGeoCoordinate itemPositionToCoordinate(const QDoubleVector2D &pos, bool clipToViewport = true) co… 147 …QDoubleVector2D coordinateToItemPosition(const QGeoCoordinate &coordinate, bool clipToViewport = t… 153 …QGeoCoordinate anchorCoordinateToPoint(const QGeoCoordinate &coordinate, const QPointF &anchorPoin… 154 bool setBearing(qreal bearing, const QGeoCoordinate &coordinate) override; 162 QDoubleVector2D geoToMapProjection(const QGeoCoordinate &coordinate) const; 163 QGeoCoordinate mapProjectionToGeo(const QDoubleVector2D &projection) const; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/planespotter/ |
| H A D | main.cpp | 68 Q_PROPERTY(QGeoCoordinate position READ position WRITE setPosition NOTIFY positionChanged) 71 Q_PROPERTY(QGeoCoordinate from READ from WRITE setFrom NOTIFY fromChanged) 72 Q_PROPERTY(QGeoCoordinate to READ to WRITE setTo NOTIFY toChanged) 82 void setFrom(const QGeoCoordinate& from) in setFrom() 87 QGeoCoordinate from() const in from() 92 void setTo(const QGeoCoordinate& to) in setTo() 97 QGeoCoordinate to() const in to() 102 void setPosition(const QGeoCoordinate &c) { in setPosition() 110 QGeoCoordinate position() const in position() 184 QGeoCoordinate currentPosition; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorouterequest/ |
| H A D | tst_qgeorouterequest.cpp | 49 qgeocoordinate = new QGeoCoordinate(); in init() 63 QGeoCoordinate *qgeocoord1 = new QGeoCoordinate(43.5435, 76.342); in constructor_waypoints() 64 QGeoCoordinate *qgeocoord2 = new QGeoCoordinate(-43.5435, 176.342); in constructor_waypoints() 65 QGeoCoordinate *qgeocoord3 = new QGeoCoordinate(-13.5435, +76.342); in constructor_waypoints() 67 QList<QGeoCoordinate> waypoints; in constructor_waypoints() 89 QGeoCoordinate *qgeocoord1 = new QGeoCoordinate(43.5435, 76.342); in constructor_orig_dest() 90 QGeoCoordinate *qgeocoord2 = new QGeoCoordinate(-43.5435, 176.342); in constructor_orig_dest() 94 QList<QGeoCoordinate> waypoints; in constructor_orig_dest() 133 QGeoCoordinate *qgeocoordinatecopy = new QGeoCoordinate(34.324 , -110.32); in excludeAreas() 227 QList<QGeoCoordinate> waypoints; in waypoints() [all …]
|