如何在黑莓中找到两个地方之间的路线? [英] How to find the route between two places in BlackBerry?

查看:27
本文介绍了如何在黑莓中找到两个地方之间的路线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 BlackBerry 中找到两地之间的路线信息?

How do I find the route information between two places in BlackBerry?

我正在使用 MapField 在我的应用程序中显示地图.

I'm using MapField to show the map in my application.

推荐答案

据我了解,您需要获取多个位置之间的路径长度.
在 MapField 中是不可能的,您只能自己设置该路线.

As I understood, you need to get a path length between several locations.
It's not possible in MapField, you can only set that route by yourself.

您始终可以在应用程序中使用 MapField 来实现简单的功能,例如显示位置,并使用 BlackBerry Maps 应用程序来增强功能,例如为用户选择位置和路线说明.

You can always use MapField in you application for simple functionality, like present locations, and use BlackBerry Maps application for enhanced stuff like select locations and route directions presentation for user.

要调用 BB Maps 以获取路线方向使用代码:

To invoke BB Maps for route direction use code:

Invoke.invokeApplication(Invoke.APP_TYPE_MAPS,
                        new MapsArguments(
                        MapsArguments.ARG_LOCATION_DOCUMENT,document));

文档形成如下:

<location-document>
     <GetRoute>
        <location lon='-8030000' lat='4326000' label='Kitchener, ON' description='Kitchener, Ontario, Canada' />
        <location lon='-7569792' lat='4542349' label='Ottawa, ON' description='Ottawa, Ontario, Canada' />
     </GetRoute>
</location-document>

结果会像
alt text http://www.blackberry.com/knowledgecentersupport/kmsupport/supportknowledgebase/images/DB-00599_3.jpgalt 文字 http://www.blackberry.com/knowledgecentersupport/kmsupport/supportknowledgebase/images/DB-00599_4.jpg

现在,在 BlackBerry Maps 中,您可以注册您的应用程序菜单项,并使用 MapView 使用选定的位置启动或更新您的应用程序.
请参阅 如何 - 将 ApplicationMenuItem 添加到 BlackBerry 地图

Now, in BlackBerry Maps you can register your App menu item and start or update your App with selected location using MapView.
See How To - Add an ApplicationMenuItem to BlackBerry Maps

更新

请参阅 J2ME/Android/BlackBerry - 行车路线、路线在两个位置之间

这篇关于如何在黑莓中找到两个地方之间的路线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆