黑莓地图查看绘图坐标
我想知道是否可以在黑莓的 MapView 类上绘制位置/坐标。 http://www.blackberry .com/developers/docs/5.0.0api/net/rim/blackberry/api/maps/MapView.html
在 iOS 中,我制作了一个应用程序,将引脚(注释)放在 MKMapView 上,但我找不到东西与黑莓相似吗?
任何指导将不胜感激
I was wondering if it is possible to plot locations/coords on the MapView class of blackberry.
http://www.blackberry.com/developers/docs/5.0.0api/net/rim/blackberry/api/maps/MapView.html
In iOS I made an app the drops pins(annotations) on the MKMapView but I can't find something simular for blackberry?
Any guidance will be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您基本上有两个选择:
1) 如果您希望将地图嵌入到您自己的应用程序中,请使用
MapField
将地图添加到屏幕,然后重写paint()
方法在屏幕上手动绘制图钉。2) 如果您只想启动地图应用程序并让它处理所有事情,请使用
MapsArguments
通过Invoke.invokeApplication()< /代码>
。
You have basically two options:
1) If you want the map to be embedded within your own application, use the
MapField
to add a map to your screen and then override thepaint()
method to manually draw your pins on the screen.2) If you just want to launch the maps app and let it handle everything, then use the
MapsArguments
to pass info to the app via anInvoke.invokeApplication()
.在 BlackBerry7 上,您可以使用 MapMarker 来完成此操作,而无需覆盖 Paint()。另外,您可以使用 GoogleMapField,请参阅此处的代码: https://github.com/rhomobile/rhodes/blob/master/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java
On BlackBerry7 you can do it with MapMarker, without having to override paint(). Also, you can use GoogleMapField, see code here: https://github.com/rhomobile/rhodes/blob/master/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java