Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qplacemanagerengineosm.h
Go to the documentation of this file.
1// Copyright (C) 2016 Aaron McCarthy <mccarthy.aaron@gmail.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QPLACEMANAGERENGINEOSM_H
5#define QPLACEMANAGERENGINEOSM_H
6
7#include <QtLocation/QPlaceManagerEngine>
8#include <QtLocation/QGeoServiceProvider>
9
11
12class QNetworkAccessManager;
13class QNetworkReply;
14class QPlaceCategoriesReplyOsm;
15
17{
19
20public:
24
25 QPlaceSearchReply *search(const QPlaceSearchRequest &request) override;
26
28 QString parentCategoryId(const QString &categoryId) const override;
29 QStringList childCategoryIds(const QString &categoryId) const override;
30 QPlaceCategory category(const QString &categoryId) const override;
31
32 QList<QPlaceCategory> childCategories(const QString &parentId) const override;
33
34 QList<QLocale> locales() const override;
35 void setLocales(const QList<QLocale> &locales) override;
36
37private slots:
39 void categoryReplyError();
40 void replyFinished();
41 void replyError(QPlaceReply::Error errorCode, const QString &errorString);
42
43private:
44 void fetchNextCategoryLocale();
45
46 QNetworkAccessManager *m_networkManager;
47 QByteArray m_userAgent;
48 QString m_urlPrefix;
49 QList<QLocale> m_locales;
50 bool m_debugQuery = false;
51 int m_pageSize = 50; // the default page size of the public nominatim server
52
53 QNetworkReply *m_categoriesReply;
54 QList<QPlaceCategoriesReplyOsm *> m_pendingCategoriesReply;
55 QHash<QString, QPlaceCategory> m_categories;
56 QHash<QString, QStringList> m_subcategories;
57
58 QList<QLocale> m_categoryLocales;
59};
60
61QT_END_NAMESPACE
62
63#endif // QPLACEMANAGERENGINEOSM_H
QGeoTiledMappingManagerEngineOsm(const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString)
const QList< QGeoTileProviderOsm * > & providers()
void onProviderResolutionError(const QGeoTileProviderOsm *provider)
QStringList childCategoryIds(const QString &categoryId) const override
Returns the child category identifiers of the category corresponding to categoryId.
QPlaceReply * initializeCategories() override
Initializes the categories of the manager engine.
QList< QPlaceCategory > childCategories(const QString &parentId) const override
Returns a list of categories that are children of the category corresponding to parentId.
QList< QLocale > locales() const override
Returns a list of preferred locales.
QPlaceCategory category(const QString &categoryId) const override
Returns the category corresponding to the given categoryId.
QPlaceSearchReply * search(const QPlaceSearchRequest &request) override
Searches for places according to the parameters specified in request.
QString parentCategoryId(const QString &categoryId) const override
Returns the parent category identifier of the category corresponding to categoryId.
void setLocales(const QList< QLocale > &locales) override
Set the list of preferred locales.