QGeoAreaMonitor Class ReferenceThe QGeoAreaMonitor class enables the detection of proximity changes for a specified set of coordinates. More... #include <QGeoAreaMonitor> Inherits QObject. Properties
Public Functions
Signals
Static Public Members
Additional Inherited Members
Detailed DescriptionThe QGeoAreaMonitor class enables the detection of proximity changes for a specified set of coordinates. A QGeoAreaMonitor emits signals when the current position is in range, or has moved out of range, of a specified circular area. The area is specified by a coordinate (the center point) and a radius (in meters). For example: public: MyClass::MyClass() { QGeoAreaMonitor *monitor = QGeoAreaMonitor::createDefaultMonitor(); connect(monitor, SIGNAL(areaEntered(QGeoPositionInfo)), this, SLOT(areaEntered(QGeoPositionInfo))); connect(monitor, SIGNAL(areaExited(QGeoPositionInfo)), this, SLOT(areaExited(QGeoPositionInfo))); QGeoCoordinate bigBenLocation(51.50104, -0.124632); monitor->setCenter(bigBenLocation); monitor->setRadius(100); } public Q_SLOTS: void areaEntered(const QGeoPositionInfo &update) { qDebug() << "Now within 100 meters, current position is" << update.coordinate(); } void areaExited(const QGeoPositionInfo &update) { qDebug() << "No longer within 100 meters, current position is" << update.coordinate(); } Property Documentation
|
QGeoCoordinate | center () const |
virtual void | setCenter ( const QGeoCoordinate & coordinate ) |
This property holds the radius of the area to be monitored, in meters.
If the specified radius is less than the minimum supported radius, the radius is set to the minimum radius.
When this property is set, if the center coordinate has already been set and the current position is within the monitored area, areaEntered() is emitted immediately.
By default, this property is 0.
Note: Subclass implementations must call the base implementation of setRadius() so that radius() returns the correct value.
Access functions:
qreal | radius () const |
virtual void | setRadius ( qreal radius ) |
Creates a monitor with the given parent.
Destroys the monitor.
Emitted when the current position has moved from a position outside the monitored area to a position within the monitored area.
The update holds the new position.
Emitted when the current position has moved from a position within the monitored area to a position outside the monitored area.
The update holds the new position.
Creates and returns a monitor with the given parent that monitors areas using resources on the underlying system.
Returns 0 if the system has no support for position monitoring.
Note: Symbian applications will need to have the Location capability otherwise this will return 0.