QT 位置类

发布于 2024-11-15 18:49:08 字数 293 浏览 5 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七分※倦醒 2024-11-22 18:49:08

如果我没记错的话,QGeoCooperative 是 Qt Mobility API 的一部分。

因此,您需要安装 Mobility API 并向

CONFIG+=mobility
MOBILITY=location

.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

CONFIG+=mobility
MOBILITY=location

to your .pro file.

彩虹直至黑白 2024-11-22 18:49:08

如果您使用 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;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文