如何获取在 Qt 窗口中绘制的 Google 地图上生成的路径坐标列表?

发布于 2024-11-08 00:29:11 字数 265 浏览 0 评论 0原文

此处显示了生成两个坐标之间的路径的方法:http://apidocs。 meego.com/1.2-preview/qtmobility/qgeoroutingmanager.html

现在如何获取包含地图的 Qt 小部件上生成的路径(通过 QGeoRoutingManager)上的所有坐标列表?

The way to generate a path between two coordinates is shown here: http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroutingmanager.html

Now how to get the list of all the coordinates lying on the generated path (through QGeoRoutingManager) on the Qt widget containing the map?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谷夏 2024-11-15 00:29:11

该类计算路线:
1. http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroutingmanager .html

上述类中的相关函数返回: http ://apidocs.meego.com/git-tip/qtmobility.orig/qgeoroutereply.html

我们需要找到路线上的所有坐标,这样才能显示路线:
1.“QGeoRouteReply”有一个成员routes(): http://apidocs .meego.com/1.2-preview/qtmobility/qgeoroutereply.html#routes 返回“QList”

“QGeoRoute”类有一个函数“path”,它返回路径的所有坐标: http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroute.html#path

我们可以通过“QPainter”类使用这些坐标在地图上绘制线条。

编辑

所有这些解释均来自诺基亚的 OVI 地图。 QtMobility 不支持 Google 地图。 :(

This class calculates the routes:
1. http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroutingmanager.html

The concerned function in the above class returns the: http://apidocs.meego.com/git-tip/qtmobility.orig/qgeoroutereply.html

We need to find all the coordinates on the route, so that the route can be displayed:
1. "QGeoRouteReply" has a member routes (): http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroutereply.html#routes which returns "QList"

"QGeoRoute" class has a function "path" which returns all the coordinates of the path: http://apidocs.meego.com/1.2-preview/qtmobility/qgeoroute.html#path

We can use those coordinates through "QPainter" class to draw lines on the map.

EDIT:

All these explanations are w.r.t NOKIA's OVI maps. QtMobility doesn't support Google maps. :(

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