Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QGeocodingManagerEngine Class

The QGeocodingManagerEngine class provides an interface and convenience methods to implementers of QGeoServiceProvider plugins who want to provide support for geocoding operations. More...

 #include <QGeocodingManagerEngine>

Inherits: QObject.

This class was introduced in Qt Location 5.0.

Public Functions

QGeocodingManagerEngine(const QMap<QString, QVariant> & parameters, QObject * parent = 0)
virtual ~QGeocodingManagerEngine()
virtual QGeocodeReply * geocode(const QGeoAddress & address, const QGeoBoundingArea & bounds)
virtual QGeocodeReply * geocode(const QString & address, int limit, int offset, const QGeoBoundingArea & bounds)
QLocale locale() const
QString managerName() const
int managerVersion() const
virtual QGeocodeReply * reverseGeocode(const QGeoCoordinate & coordinate, const QGeoBoundingArea & bounds)
void setLocale(const QLocale & locale)
  • 31 public functions inherited from QObject

Signals

void error(QGeocodeReply * reply, QGeocodeReply::Error error, QString errorString = QString())
void finished(QGeocodeReply * reply)

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 11 static public members inherited from QObject
  • 9 protected functions inherited from QObject

Detailed Description

The QGeocodingManagerEngine class provides an interface and convenience methods to implementers of QGeoServiceProvider plugins who want to provide support for geocoding operations.

In the default implementation, supportsGeocoding() and supportsReverseGeocoding() returns false while geocode() and reverseGeocode() cause QGeocodeReply::UnsupportedOptionError to occur.

If the service provider supports geocoding the subclass should provide an implementation of geocode() and call setSupportsGeocoding(true) at some point in time before geocode() is called.

Similarly, if the service provider supports reverse geocoding the subclass should provide an implementation reverseGeocode() and call setSupportsReverseGeocoding(true) at some point in time before reverseGeocode() is called.

A subclass of QGeocodingManagerEngine will often make use of a subclass fo QGeocodeReply internally, in order to add any engine-specific data (such as a QNetworkReply object for network-based services) to the QGeocodeReply instances used by the engine.

See also QGeocodingManager.

Member Function Documentation

QGeocodingManagerEngine::QGeocodingManagerEngine(const QMap<QString, QVariant> & parameters, QObject * parent = 0)

Constructs a new engine with the specified parent, using parameters to pass any implementation specific data to the engine.

QGeocodingManagerEngine::~QGeocodingManagerEngine() [virtual]

Destroys this engine.

void QGeocodingManagerEngine::error(QGeocodeReply * reply, QGeocodeReply::Error error, QString errorString = QString()) [signal]

This signal is emitted when an error has been detected in the processing of reply. The QGeocodingManagerEngine::finished() signal will probably follow.

The error will be described by the error code error. If errorString is not empty it will contain a textual description of the error.

This signal and QGeocodeReply::error() will be emitted at the same time.

Note: Do not delete the reply object in the slot connected to this signal. Use deleteLater() instead.

void QGeocodingManagerEngine::finished(QGeocodeReply * reply) [signal]

This signal is emitted when reply has finished processing.

If reply::error() equals QGeocodeReply::NoError then the processing finished successfully.

This signal and QGeocodeReply::finished() will be emitted at the same time.

Note: Do not delete the reply object in the slot connected to this signal. Use deleteLater() instead.

QGeocodeReply * QGeocodingManagerEngine::geocode(const QGeoAddress & address, const QGeoBoundingArea & bounds) [virtual]

Begins the geocoding of address. Geocoding is the process of finding a coordinate that corresponds to a given address.

A QGeocodeReply object will be returned, which can be used to manage the geocoding operation and to return the results of the operation.

This engine and the returned QGeocodeReply object will emit signals indicating if the operation completes or if errors occur.

If supportsGeocoding() returns false an QGeocodeReply::UnsupportedOptionError will occur.

Once the operation has completed, QGeocodeReply::locations() can be used to retrieve the results, which will consist of a list of QGeoLocation objects. These objects represent a combination of coordinate and address data.

The address data returned in the results may be different from address. This will usually occur if the geocoding service backend uses a different canonical form of addresses or if address was only partially filled out.

If bounds is non-null and a valid QGeoBoundingArea it will be used to limit the results to those that are contained by bounds. This is particularly useful if address is only partially filled out, as the service will attempt to geocode all matches for the specified data.

The user is responsible for deleting the returned reply object, although this can be done in the slot connected to QGeocodingManagerEngine::finished(), QGeocodingManagerEngine::error(), QGeocodeReply::finished() or QGeocodeReply::error() with deleteLater().

QGeocodeReply * QGeocodingManagerEngine::geocode(const QString & address, int limit, int offset, const QGeoBoundingArea & bounds) [virtual]

Begins geocoding for a location matching address.

A QGeocodeReply object will be returned, which can be used to manage the geocoding operation and to return the results of the operation.

This engine and the returned QGeocodeReply object will emit signals indicating if the operation completes or if errors occur.

Once the operation has completed, QGeocodeReply::locations() can be used to retrieve the results, which will consist of a list of QGeoLocation objects. These objects represent a combination of coordinate and address data.

If limit is -1 the entire result set will be returned, otherwise at most limit results will be returned.

The offset parameter is used to ask the geocoding service to not return the first offset results.

The limit and offset results are used together to implement paging.

If bounds is non-null and a valid QGeoBoundingArea it will be used to limit the results to those that are contained by bounds.

The user is responsible for deleting the returned reply object, although this can be done in the slot connected to QGeocodingManagerEngine::finished(), QGeocodingManagerEngine::error(), QGeocodeReply::finished() or QGeocodeReply::error() with deleteLater().

QLocale QGeocodingManagerEngine::locale() const

Returns the locale used to hint to this geocoding manager about what language to use for the results.

See also setLocale().

QString QGeocodingManagerEngine::managerName() const

Returns the name which this engine implementation uses to distinguish itself from the implementations provided by other plugins.

The combination of managerName() and managerVersion() should be unique amongst plugin implementations.

int QGeocodingManagerEngine::managerVersion() const

Returns the version of this engine implementation.

The combination of managerName() and managerVersion() should be unique amongst plugin implementations.

QGeocodeReply * QGeocodingManagerEngine::reverseGeocode(const QGeoCoordinate & coordinate, const QGeoBoundingArea & bounds) [virtual]

Begins the reverse geocoding of coordinate. Reverse geocoding is the process of finding an address that corresponds to a given coordinate.

A QGeocodeReply object will be returned, which can be used to manage the reverse geocoding operation and to return the results of the operation.

This engine and the returned QGeocodeReply object will emit signals indicating if the operation completes or if errors occur.

If supportsReverseGeocoding() returns false an QGeocodeReply::UnsupportedOptionError will occur.

At that point QGeocodeReply::locations() can be used to retrieve the results, which will consist of a list of QGeoLocation objects. These objects represent a combination of coordinate and address data.

The coordinate data returned in the results may be different from coordinate. This will usually occur if the reverse geocoding service backend shifts the coordinates to be closer to the matching addresses, or if the backend returns results at multiple levels of detail.

If multiple results are returned by the reverse geocoding service backend they will be provided in order of specificity. This normally occurs if the backend is configured to reverse geocode across multiple levels of detail. As an example, some services will return address and coordinate pairs for the street address, the city, the state and the country.

If bounds is non-null and a valid QGeoBoundingArea it will be used to limit the results to those that are contained by bounds.

The user is responsible for deleting the returned reply object, although this can be done in the slot connected to QGeocodingManagerEngine::finished(), QGeocodingManagerEngine::error(), QGeocodeReply::finished() or QGeocodeReply::error() with deleteLater().

void QGeocodingManagerEngine::setLocale(const QLocale & locale)

Sets the locale to be used by this manager to locale.

If this geocoding manager supports returning the results in different languages, they will be returned in the language of locale.

The locale used defaults to the system locale if this is not set.

See also locale().

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web