QGeoServiceProvider Class ReferenceThe QGeoServiceProvider class aggregates access to services which provide geographical information. More... #include <QGeoServiceProvider> Public Types
Public Functions
Static Public Members
Detailed DescriptionThe QGeoServiceProvider class aggregates access to services which provide geographical information. The Maps and Navigation API allows people to access various kinds of geographical information, including functionality to perform geocoding, routing and the display of maps. The QGeoServiceProvider aggregates the access to a set of these services that are provided by a single vendor. It is possible to mix and match service providers for the various domains, so that a geocoding manager from one service provider can be used with a geographic routing manager from another service provider. This is not recommended unless the client is able to verify that the data provided by the different services are compatible, as differences in the underlying data sets could cause serious incongruences between the services. Subclasses of QGeoServiceProvider guarantee that the different services that they provide are interoperable. At this point only the Nokia Services plugin is pacakged with Qt Mobility, which is accessible using the provider name "nokia". Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QGeoServiceProvider::NoError | 0 | No error has occurred. |
QGeoServiceProvider::NotSupportedError | 1 | The plugin does not support this functionality. |
QGeoServiceProvider::UnknownParameterError | 2 | The plugin did not recognise one of the parameters it was given. |
QGeoServiceProvider::MissingRequiredParameterError | 3 | The plugin did not find one of the parameters it was expecting. |
Destroys the service provider object.
Returns a list of names of the available service providers, for use with the QGeoServiceProvider constructors.
Returns an error code describing the error which occurred during the last operation that was performed by this class.
Returns a string describing the error which occurred during the last operation that was performed by this class.
Returns the QGeoMappingManager made available by the service provider.
This function will return 0 if the service provider does not provide any mapping services.
This function will attempt to construct a QGeoMappingManager instance when it is called for the first time. If the attempt is successful the QGeoMappingManager will be cached, otherwise each call of this function will attempt to construct a QGeoMappingManager instance until the construction is successful.
After this function has been called, error() and errorString() will report any errors which occurred during the construction of the QGeoMappingManager.
Returns the QGeoRoutingManager made available by the service provider.
This function will return 0 if the service provider does not provide any geographic routing services.
This function will attempt to construct a QGeoRoutingManager instance when it is called for the first time. If the attempt is successful the QGeoRoutingManager will be cached, otherwise each call of this function will attempt to construct a QGeoRoutingManager instance until the construction is successful.
After this function has been called, error() and errorString() will report any errors which occurred during the construction of the QGeoRoutingManager.
Returns the QGeoSearchManager made available by the service provider.
This function will return 0 if the service provider does not provide any geocoding services.
This function will attempt to construct a QGeoSearchManager instance when it is called for the first time. If the attempt is successful the QGeoSearchManager will be cached, otherwise each call of this function will attempt to construct a QGeoSearchManager instance until the construction is successful.
After this function has been called, error() and errorString() will report any errors which occurred during the construction of the QGeoSearchManager.