Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Retrieve Location Using Qt Mobility: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Developing with Qt::QtMobility]]<br />[[Category:HowTo]]<br />[[Category:Snippets]]<br />[[Category:Tutorial]] | |||
= | [toc align_right="yes&quot; depth="4&quot;] | ||
'''English''' [[Retrieve_Location_Using_Qt_Mobility_Bulgarian|Български]] | |||
= Retrieve Location Using Qt Mobility = | |||
== Overview == | |||
* '''SatellitePositioningMethods''' | The provided code snippet shows how to retrieve location using Qt Mobility class "QGeoPositionInfoSource&quot;:http://doc.qt.nokia.com/qtmobility-1.1.0-beta/qgeopositioninfosource.html. When the position is retrieved the location coordinates (latitude and longitude) are displayed on the screen. The given example has been tested on Nokia E7 with Symbian^3. | ||
* '''NonSatellitePositioningMethods''' | |||
* '''AllPositioningMethods''' | The following "positioning methods&quot;:http://doc.qt.nokia.com/qtmobility-1.1.0-beta/qgeopositioninfosource.html#PositioningMethod-enum can be used:<br />* '''SatellitePositioningMethods''' - Satellite-based positioning methods such as GPS.<br />* '''NonSatellitePositioningMethods''' - Other positioning methods.<br />* '''AllPositioningMethods''' - All positioning methods. | ||
The example application is using '''NonSatellitePositioningMethods'''. | The example application is using '''NonSatellitePositioningMethods'''. | ||
==Code Snippet== | == Code Snippet == | ||
===Project File=== | === Project File === | ||
Qt Mobility should be included at the project file. Additionally if the application is targeting Symbian devices Location should be added as a | Qt Mobility should be included at the project file. Additionally if the application is targeting Symbian devices Location should be added as a "capability&quot;:http://developer.qt.nokia.com/wiki/Symbian_Capabilities. | ||
=== | <code><br />symbian:TARGET.CAPABILITY ''= NetworkServices Location | ||
<br />CONFIG''= mobility<br />MOBILITY += location<br /></code> | |||
=== | === Header === | ||
<code><br />#ifndef MAINWINDOW_H<br />#define MAINWINDOW_H | |||
* | #include <QtGui/QMainWindow&gt;<br />#include <QGeoPositionInfo&gt;<br />#include <QGeoPositionInfoSource&gt;<br />#include <QLabel&gt; | ||
// QtMobility namespace<br />QTM_USE_NAMESPACE | |||
namespace Ui {<br /> class MainWindow;<br />} | |||
class MainWindow : public QMainWindow<br />{<br /> Q_OBJECT<br />public: | |||
explicit MainWindow(QWidget '''parent = 0); | |||
<br /> virtual ~MainWindow(); | |||
<br />public slots:<br /> /'''*<br /> * Called when the current position is updated.<br /> *<br /> * </code>return nothing<br /> '''/<br /> void positionUpdated(QGeoPositionInfo geoPositionInfo); | |||
<br />private:<br /> /'''*<br /> * Start listening for position changes<br /> *<br /> * <code>return nothing<br /> '''/<br /> void startLocationAPI(); | |||
<br />private:<br /> QGeoPositionInfoSource''' m_pLocationInfo; | |||
QLabel* m_pLabel; | |||
}; | |||
#endif // MAINWINDOW_H<br /></code> | |||
=== Source === | |||
<code><br />#include "mainwindow.h&quot; | |||
#include <QGeoCoordinate&gt;<br />#include <QApplication&gt;<br />#include <QDesktopWidget&gt; | |||
#include <QtCore/QCoreApplication&gt; | |||
#include <QDebug&gt; | |||
MainWindow::MainWindow(QWidget '''parent)<br /> : QMainWindow(parent), m_pLocationInfo(NULL), m_pLabel(NULL)<br />{<br /> m_pLabel = new QLabel("",this);<br /> m_pLabel->setGeometry(QApplication::desktop()<s>>screenGeometry());<br /> startLocationAPI();<br />} | |||
<br />MainWindow::~MainWindow()<br />{ | |||
<br />} | |||
<br />void MainWindow::startLocationAPI()<br />{<br /> // Obtain the location data source if it is not obtained already<br /> if (!m_pLocationInfo)<br /> {<br /> m_pLocationInfo =<br /> QGeoPositionInfoSource::createDefaultSource(this); | |||
<br /> //Select positioning method<br /> m_pLocationInfo</s>>setPreferredPositioningMethods(QGeoPositionInfoSource::NonSatellitePositioningMethods); | |||
<br /> // When the position is changed the positionUpdated function is called<br /> connect(m_pLocationInfo, SIGNAL (positionUpdated(QGeoPositionInfo)),<br /> this, SLOT (positionUpdated(QGeoPositionInfo))); | |||
<br /> // Start listening for position updates<br /> m_pLocationInfo->startUpdates();<br /> }<br />} | |||
<br />void MainWindow::positionUpdated(QGeoPositionInfo geoPositionInfo)<br />{<br /> if (geoPositionInfo.isValid())<br /> {<br /> // Get the current location coordinates<br /> QGeoCoordinate geoCoordinate = geoPositionInfo.coordinate();<br /> qreal latitude = geoCoordinate.latitude();<br /> qreal longitude = geoCoordinate.longitude(); | |||
<br /> m_pLabel->setText( QString("Latitude: %1 Longitude: %2&quot;).arg(latitude).arg(longitude) );<br /> }<br />}<br /></code> | |||
<br />h2. Troubleshooting | |||
<br />''' 'QGeoPositionInfo' has not been declared | |||
All required header files must be included and the Qt Mobility namespace should be specified. | All required header files must be included and the Qt Mobility namespace should be specified. | ||
<code><br />#include <QGeoPositionInfo&gt;<br />#include <QGeoPositionInfoSource&gt; | |||
// QtMobility namespace<br />QTM_USE_NAMESPACE<br /></code> | |||
* AllPositioningMethods does not work as expected | |||
This is a known "critical bug that affects Qt Mobility 1.1.2&quot;:https://bugreports.qt.io/browse/QTMOBILITY-1550 Please check the provided link for details. | |||
== See Also == | |||
Revision as of 09:41, 24 February 2015
[toc align_right="yes" depth="4"]
English Български
Retrieve Location Using Qt Mobility
Overview
The provided code snippet shows how to retrieve location using Qt Mobility class "QGeoPositionInfoSource":http://doc.qt.nokia.com/qtmobility-1.1.0-beta/qgeopositioninfosource.html. When the position is retrieved the location coordinates (latitude and longitude) are displayed on the screen. The given example has been tested on Nokia E7 with Symbian^3.
The following "positioning methods":http://doc.qt.nokia.com/qtmobility-1.1.0-beta/qgeopositioninfosource.html#PositioningMethod-enum can be used:
* SatellitePositioningMethods - Satellite-based positioning methods such as GPS.
* NonSatellitePositioningMethods - Other positioning methods.
* AllPositioningMethods - All positioning methods.
The example application is using NonSatellitePositioningMethods.
Code Snippet
Project File
Qt Mobility should be included at the project file. Additionally if the application is targeting Symbian devices Location should be added as a "capability":http://developer.qt.nokia.com/wiki/Symbian_Capabilities.
<br />symbian:TARGET.CAPABILITY ''= NetworkServices Location
<br />CONFIG''= mobility<br />MOBILITY += location<br />
Header
<br />#ifndef MAINWINDOW_H<br />#define MAINWINDOW_H
#include <QtGui/QMainWindow&gt;<br />#include <QGeoPositionInfo&gt;<br />#include <QGeoPositionInfoSource&gt;<br />#include <QLabel&gt;
// QtMobility namespace<br />QTM_USE_NAMESPACE
namespace Ui {<br /> class MainWindow;<br />}
class MainWindow : public QMainWindow<br />{<br /> Q_OBJECT<br />public:
explicit MainWindow(QWidget '''parent = 0);
<br /> virtual ~MainWindow();
<br />public slots:<br /> /'''*<br /> * Called when the current position is updated.<br /> *<br /> *
return nothing
/
void positionUpdated(QGeoPositionInfo geoPositionInfo);
private:
/*
* Start listening for position changes
*
*
return nothing<br /> '''/<br /> void startLocationAPI();
<br />private:<br /> QGeoPositionInfoSource''' m_pLocationInfo;
QLabel* m_pLabel;
};
#endif // MAINWINDOW_H<br />
Source
<br />#include "mainwindow.h&quot;
#include <QGeoCoordinate&gt;<br />#include <QApplication&gt;<br />#include <QDesktopWidget&gt;
#include <QtCore/QCoreApplication&gt;
#include <QDebug&gt;
MainWindow::MainWindow(QWidget '''parent)<br /> : QMainWindow(parent), m_pLocationInfo(NULL), m_pLabel(NULL)<br />{<br /> m_pLabel = new QLabel("",this);<br /> m_pLabel->setGeometry(QApplication::desktop()<s>>screenGeometry());<br /> startLocationAPI();<br />}
<br />MainWindow::~MainWindow()<br />{
<br />}
<br />void MainWindow::startLocationAPI()<br />{<br /> // Obtain the location data source if it is not obtained already<br /> if (!m_pLocationInfo)<br /> {<br /> m_pLocationInfo =<br /> QGeoPositionInfoSource::createDefaultSource(this);
<br /> //Select positioning method<br /> m_pLocationInfo</s>>setPreferredPositioningMethods(QGeoPositionInfoSource::NonSatellitePositioningMethods);
<br /> // When the position is changed the positionUpdated function is called<br /> connect(m_pLocationInfo, SIGNAL (positionUpdated(QGeoPositionInfo)),<br /> this, SLOT (positionUpdated(QGeoPositionInfo)));
<br /> // Start listening for position updates<br /> m_pLocationInfo->startUpdates();<br /> }<br />}
<br />void MainWindow::positionUpdated(QGeoPositionInfo geoPositionInfo)<br />{<br /> if (geoPositionInfo.isValid())<br /> {<br /> // Get the current location coordinates<br /> QGeoCoordinate geoCoordinate = geoPositionInfo.coordinate();<br /> qreal latitude = geoCoordinate.latitude();<br /> qreal longitude = geoCoordinate.longitude();
<br /> m_pLabel->setText( QString("Latitude: %1 Longitude: %2&quot;).arg(latitude).arg(longitude) );<br /> }<br />}<br />
h2. Troubleshooting
'QGeoPositionInfo' has not been declared
All required header files must be included and the Qt Mobility namespace should be specified.
<br />#include <QGeoPositionInfo&gt;<br />#include <QGeoPositionInfoSource&gt;
// QtMobility namespace<br />QTM_USE_NAMESPACE<br />
- AllPositioningMethods does not work as expected
This is a known "critical bug that affects Qt Mobility 1.1.2":https://bugreports.qt.io/browse/QTMOBILITY-1550 Please check the provided link for details.