在 Blackberry 应用程序中使用 Google 地图
谁能告诉我如何在黑莓应用程序开发中使用谷歌地图而不是黑莓地图?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能告诉我如何在黑莓应用程序开发中使用谷歌地图而不是黑莓地图?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
最近,我想到使用 Google 地图网站 /en/developers/deliverables/8540/Display_content_in_BB_Browser_field_565587_11.jsp" rel="noreferrer">Browser.Field 但这是不可能的,因为 GMaps 基于 JavaScript 并且黑莓本机浏览器对其支持很差。
实际上,在 Blackberry 上使用 Google 地图有 2 种方法:
Recently I had an idea to use Google Maps website from Browser.Field but it's not possible since GMaps are based on JavaScript and it's badly supported by Blackberry native Browser.
Actually there are 2 ways of using Google Maps on Blackberry:
下面是一个小例子:
查看 Google 地图静态图像的表单:
下载静态图像的 inet 类:
启动下载的 Button 操作和加载表单以查看图像的回调
操作 精炼和编辑代码所以它适合您的需求。我花了一些时间才把它弄好。
Here is a little example:
The Form to view the Google Maps Static image:
The class inet class to download the static image:
The Button action that starts the download and the callback action that loads the form to view the image
Refine and edit the code so it fits your needs. Took me some time to get it right.
现在可以使用 Google 地图而不是 BlackBerry 地图以及我们自己的数据(如图所示)。
如果您希望使用谷歌地图来显示您自己的位置/标记,您可以使用以下命令调用谷歌地图来自您的应用程序的
ApplicationDescriptor
。使用 CodeModuleManager.getModuleHandle("GoogleMaps") 检查设备上的 google 地图; 它返回一个整数,其中非零表示可用。然后,您可以在KML
文件中添加位置,甚至可以使用 KML 文件标签自定义位置指针。示例 由 Max 链接仅允许单个标记。因此,如果要添加多个标记,则需要 KML 文件。
您可以查看简单的教程 这里适合初学者。
It is possible now to use Google Maps instead of BlackBerry maps with our own data like in the image.
If you're looking to use google maps to show your own locations/markers you can invoke google maps using
ApplicationDescriptor
from your application. Check for google maps on device usingCodeModuleManager.getModuleHandle("GoogleMaps");
it returns an integer where non zero means it is available. Then you can add locations in yourKML
file, you can even customize location pointers using KML file tags.The example as linked by Max allows a single marker only. So a KML file becomes necessary if multiple markers are to be added.
You may look at the simple tutorial here for beginners.