Home
last modified time | relevance | path

Searched refs:locationObject (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeocodereply_esri.cpp150 QJsonObject locationObject = object.value(QStringLiteral("location")).toObject(); in parseAddress() local
152 coordinate.setLongitude(locationObject.value(QStringLiteral("x")).toDouble()); in parseAddress()
153 coordinate.setLatitude(locationObject.value(QStringLiteral("y")).toDouble()); in parseAddress()
167 QJsonObject locationObject = candidate.value(QStringLiteral("location")).toObject(); in parseCandidate() local
169 coordinate.setLongitude(locationObject.value(QStringLiteral("x")).toDouble()); in parseCandidate()
170 coordinate.setLatitude(locationObject.value(QStringLiteral("y")).toDouble()); in parseCandidate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/placesv2/
H A Dqplacedetailsreplyimpl.cpp149 QJsonObject locationObject = object.value(QLatin1String("location")).toObject(); in replyFinished() local
154 QJsonArray position = locationObject.value(QLatin1String("position")).toArray(); in replyFinished()
159 QJsonObject addressObject = locationObject.value(QLatin1String("address")).toObject(); in replyFinished()
197 if (locationObject.contains(QLatin1String("bbox"))) { in replyFinished()
198 QJsonArray bbox = locationObject.value(QLatin1String("bbox")).toArray(); in replyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeocodemodel.cpp250 QObject *locationObject = declarativeLocations_.at(index.row()); in data() local
251 Q_ASSERT(locationObject); in data()
252 return QVariant::fromValue(locationObject); in data()