| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeolocation/ |
| H A D | tst_qgeolocation.cpp | 59 QCOMPARE(m_location.boundingBox(), m_viewport); in constructor() 120 QCOMPARE(m_location.boundingBox(),qgeoboundingboxcopy); in viewport() 124 QVERIFY(m_location.boundingBox() != qgeoboundingboxcopy); in viewport() 244 QGeoRectangle boundingBox; in isEmpty() local 245 boundingBox.setTopLeft(QGeoCoordinate(1, -1)); in isEmpty() 246 boundingBox.setBottomRight(QGeoCoordinate(-1, 1)); in isEmpty() 247 QVERIFY(!boundingBox.isEmpty()); in isEmpty() 268 location.setBoundingBox(boundingBox); in isEmpty()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/ |
| H A D | qdeclarativegeolocation.cpp | 119 setBoundingBox(src.boundingBox()); in setLocation() 188 void QDeclarativeGeoLocation::setBoundingBox(const QGeoRectangle &boundingBox) in setBoundingBox() argument 190 if (m_boundingBox == boundingBox) in setBoundingBox() 193 m_boundingBox = boundingBox; in setBoundingBox() 197 QGeoRectangle QDeclarativeGeoLocation::boundingBox() const in boundingBox() function in QDeclarativeGeoLocation
|
| H A D | qdeclarativegeolocation_p.h | 70 …Q_PROPERTY(QGeoRectangle boundingBox READ boundingBox WRITE setBoundingBox NOTIFY boundingBoxChang… 86 QGeoRectangle boundingBox() const; 87 void setBoundingBox(const QGeoRectangle &boundingBox);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/ |
| H A D | qgeocodingmanagerenginemapbox.cpp | 166 QGeoRectangle boundingBox = bounds.boundingGeoRectangle(); in doSearch() local 167 if (!boundingBox.isEmpty()) { in doSearch() 169 QString::number(boundingBox.topLeft().longitude()) + QLatin1Char(',') + in doSearch() 170 QString::number(boundingBox.bottomRight().latitude()) + QLatin1Char(',') + in doSearch() 171 QString::number(boundingBox.bottomRight().longitude()) + QLatin1Char(',') + in doSearch() 172 QString::number(boundingBox.topLeft().latitude())); in doSearch()
|
| H A D | qplacemanagerenginemapbox.cpp | 209 QGeoRectangle boundingBox = searchArea.boundingGeoRectangle(); in doSearch() local 210 if (!boundingBox.isEmpty()) { in doSearch() 212 QString::number(boundingBox.topLeft().longitude()) + QLatin1Char(',') + in doSearch() 213 QString::number(boundingBox.bottomRight().latitude()) + QLatin1Char(',') + in doSearch() 214 QString::number(boundingBox.bottomRight().longitude()) + QLatin1Char(',') + in doSearch() 215 QString::number(boundingBox.topLeft().latitude())); in doSearch()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeolocation.cpp | 184 QGeoRectangle QGeoLocation::boundingBox() const in boundingBox() function in QGeoLocation 192 void QGeoLocation::setBoundingBox(const QGeoRectangle &boundingBox) in setBoundingBox() argument 194 d->viewport = boundingBox; in setBoundingBox()
|
| H A D | qgeolocation.h | 73 QGeoRectangle boundingBox() const; // ### Qt6: change this into QGeoShape geometry
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/ |
| H A D | tst_coordinate.qml | 63 boundingBox: box 106 compare (testLocation.boundingBox.contains(inside), true) 107 compare (testLocation.boundingBox.contains(outside), false) 108 compare (testLocation.boundingBox.bottomRight.longitude, br.longitude) 109 compare (testLocation.boundingBox.bottomRight.latitude, br.latitude) 110 compare (testLocation.boundingBox.topLeft.longitude, tl.longitude) 111 compare (testLocation.boundingBox.topLeft.latitude, tl.latitude) 122 compare(invalidLocation.boundingBox.isEmpty, true) 123 compare(invalidLocation.boundingBox.isValid, false)
|
| H A D | tst_place.qml | 82 boundingBox { 226 if (place1.location.boundingBox !== place2.location.boundingBox)
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/ |
| H A D | placemanagerengine_esri.cpp | 116 const QGeoRectangle boundingBox = request.searchArea().boundingGeoRectangle(); in search() local 117 if (!boundingBox.isEmpty()) in search() 120 .arg(boundingBox.topLeft().longitude()) in search() 121 .arg(boundingBox.topLeft().latitude()) in search() 122 .arg(boundingBox.bottomRight().longitude()) in search() 123 .arg(boundingBox.bottomRight().latitude()); in search()
|
| H A D | placesearchreply_esri.cpp | 201 const QGeoRectangle boundingBox(topLeft, bottomRight); in parsePlaceResult() local 207 geoLocation.setBoundingBox(boundingBox); in parsePlaceResult()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/ |
| H A D | qplacemanagerengineosm.cpp | 145 QGeoRectangle boundingBox = request.searchArea().boundingGeoRectangle(); in search() local 147 if (!boundingBox.isEmpty()) { in search() 150 coordinates = QString::number(boundingBox.topLeft().longitude()) + QLatin1Char(',') + in search() 151 QString::number(boundingBox.topLeft().latitude()) + QLatin1Char(',') + in search() 152 QString::number(boundingBox.bottomRight().longitude()) + QLatin1Char(',') + in search() 153 QString::number(boundingBox.bottomRight().latitude()); in search()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeocodejsonparser.cpp | 352 QGeoRectangle boundingBox; in parseLocation() local 356 …boundingBox.setBottomRight(QGeoCoordinate(bottomRight.value("Latitude").toDouble(), bottomRight.va… in parseLocation() 357 …boundingBox.setTopLeft(QGeoCoordinate(topLeft.value("Latitude").toDouble(), topLeft.value("Longitu… in parseLocation() 361 loc->setBoundingBox(boundingBox); in parseLocation()
|
| H A D | qgeotiledmappingmanagerengine_nokia.cpp | 287 QGeoRectangle boundingBox(QGeoCoordinate(top > bottom? top : bottom, in loadCopyrightsDescriptorsFromJson() local 291 copyrightDesc.boxes << boundingBox; in loadCopyrightsDescriptorsFromJson()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qmlinterface/data/ |
| H A D | TestLocation.qml | 34 // boundingBox { 43 boundingBox : QtPositioning.rectangle(QtPositioning.coordinate(20,10, 30),40.0,30)
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/ |
| H A D | plugins.qmltypes | 146 Property { name: "boundingBox"; type: "QGeoRectangle" }
|