黑莓应用程序地图可点击标记
我正在考虑开发一个基于 BB 提供的地图的 BB 应用程序。 诀窍是我需要地图上的标记是可点击的。 我做了一些研究,很多人都说这是不可能的。 有没有人这样做过,以便他能指出我正确的方向?
提前致谢。
I am thinking about developing a BB app that is based on maps provided by BB.
The trick is that I need the markers on the map to be clickable.
I did a little research and a lot of people are saying that this is not possible.
Has anyone done it so he can point me to the right direction?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.wikitude.com ->这个应用程序可以。
您可以扩展 MapField 类,然后在类内部处理与标记的交互(应该重写 Paint() 和 touchEvent())。
或者最终,与许多 UI 类一样,您可以通过将它们绘制在位图上并在屏幕上渲染之前对其进行操作来完成“不可能”的事情。
http://www.wikitude.com -> this application does.
You can extend the MapField class, and then handle the interaction with your markers internally in your class (paint() and touchEvent() should be overridden).
Or eventually, as with many UI-classes, you can do "impossible" things just by painting them on a Bitmap, and manipulating it before rendering on screen.