-
Notifications
You must be signed in to change notification settings - Fork 59
/
qgeoserviceproviderplugingooglemaps.h
30 lines (25 loc) · 1.48 KB
/
qgeoserviceproviderplugingooglemaps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef QGEOSERVICEPROVIDERGOOGLEMAPS_H
#define QGEOSERVICEPROVIDERGOOGLEMAPS_H
#include <QtCore/QObject>
#include <QtLocation/QGeoServiceProviderFactory>
class QGeoServiceProviderFactoryGooglemaps: public QObject, public QGeoServiceProviderFactory
{
Q_OBJECT
Q_INTERFACES(QGeoServiceProviderFactory)
Q_PLUGIN_METADATA(IID "org.qt-project.qt.geoservice.serviceproviderfactory/6.0"
FILE "googlemaps_plugin.json")
public:
QGeoCodingManagerEngine *createGeocodingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QGeoRoutingManagerEngine *createRoutingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QPlaceManagerEngine *createPlaceManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
QGeoMappingManagerEngine *createMappingManagerEngine(const QVariantMap ¶meters,
QGeoServiceProvider::Error *error,
QString *errorString) const;
};
#endif