QT 位置类
如何在 symbian 9.3 的 qt 中连接到 GPS 数据?
我在 qt 中写下这个,
#include <QGeoCoordinate>
但结果是:没有这样的文件或目录(((
我已写入 .pro TARGET.CAPABILITY += Location 但它都是一样的。
我如何访问位置类?
QT 4.7.0
我在磁盘上搜索,例如 QGeoCooperative 类,但结果为 0
How can I connect to gps data in qt for symbian 9.3 ?
I write this in qt
#include <QGeoCoordinate>
But result is: No such file or directory (((
I have write to .pro TARGET.CAPABILITY += Location but it's all the same.
How i can access to location classes ?
QT 4.7.0
I search on my disk for, for example QGeoCoordinate class, but result is 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我没记错的话,QGeoCooperative 是 Qt Mobility API 的一部分。
因此,您需要安装 Mobility API 并向
.pro 文件中添加类似内容。
If I'm not mistaken, QGeoCoordinate is part of the Qt Mobility API.
Thus, you need to install the Mobility API and add something like
to your .pro file.
如果您使用 Qt Creator,请确保您的项目设置为针对 QT Simulator 或其他移动环境构建。看来 QT Creator 会解析配置,如果将其设置为桌面应用程序,则无法找到位置文件。
另外,请确保您已添加:
using namespace QtMobility;
If you use Qt Creator, make sure your project is set to be built for QT Simulator or other mobile environment. It seems that the QT Creator parses the configuration and if it is set for Desktop app, fails to find the location files.
Also, make sure you have added:
using namespace QtMobility;