在 Blackberry 地图上动态添加标记

发布于 2024-11-19 09:59:12 字数 176 浏览 2 评论 0原文

我必须向地图添加标记,并显示以前的纬度和经度。

到目前为止,我已将先前的纬度和经度添加到向量中并显示在地图上,但新值和过去的值都同时显示,有什么方法可以在新值到达时添加它们,以及过去的值已经在地图上。

就像在 Android 中使用 Overlay 一样。

有人可以告诉我是否有其他选择吗?

i have to add markers to the map and also display the previous latitude and longitude.

So far i have added the previous latitude and longitude to a Vector and display on the map, but the new values and past value are all displayed at the same time, is there way i can add the new values as and when they arrive, and the past values are already there on the map.

Something like using Overlay in Android.

Could someone please tell me if there is any alternative for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-11-26 09:59:13

我解决了这个问题,以防万一有人遇到示例问题,这是我的代码的一部分:
这是 BB Os 6 的。

      MapDataModel data = map.getModel();  
      MapLocation location = new MapLocation(latitude,longitude,"My Location",null);
      int locationID = data.add((Mappable)location,"location");                             
      data.tag(locationID, "Location");  
      Mappable datamap = (Mappable) location;
      data.add(datamap,"Location",true);
      data.setVisible("Location");

i solved this issue, just incase anyone has the sample problem, here is some part of my code:
this is for BB Os 6.

      MapDataModel data = map.getModel();  
      MapLocation location = new MapLocation(latitude,longitude,"My Location",null);
      int locationID = data.add((Mappable)location,"location");                             
      data.tag(locationID, "Location");  
      Mappable datamap = (Mappable) location;
      data.add(datamap,"Location",true);
      data.setVisible("Location");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文