Blackberry MapView plot coords

2019-03-06 08:41发布

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

2条回答
欢心
2楼-- · 2019-03-06 08:56

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

查看更多
老娘就宠你
3楼-- · 2019-03-06 09:06

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 the paint() 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 an Invoke.invokeApplication().

查看更多
登录 后发表回答