如何获取在 Qt 窗口中绘制的 Google 地图上生成的路径坐标列表?
此处显示了生成两个坐标之间的路径的方法: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该类计算路线:
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. :(