OSMDroid 和 OpenStreetMapViewItemizedOverlay
我在我的应用程序中使用 OSMDroid。一切都很好,但并非一切都清楚。
将使用 OpenStreetMapViewItemizedOverlay 或 (OpenStreetMapViewItemizedOverlayWithFocus)。
如果用户单击此叠加层中的某个项目,则会出现一个带有项目标题的小弹出窗口 和描述。
有谁知道,如果用户点击,如何实现点击侦听器 在那个弹出窗口上?
我还没有找到任何方法,我将非常感谢 任何建议或链接。
I'm using in my application OSMDroid. Everything works nice, but not everything is clear.
OpenStreetMapViewItemizedOverlay or (OpenStreetMapViewItemizedOverlayWithFocus) will be used.
If the user clicks on an item from this overlay, a small pop-up occurs with item's title
and description.
Does anybody know, how to implement click-listener if the user clicks
on that pop-up?
I haven't found any methods for that and I'll be very thankfull for
any suggestion or link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,OSMDroid 使用与 google 相同的 API。 Google 的
ItemizedOverlay
有两个方法onTap(GeoPoint p, MapView mapView)
和onTap(int index)
,它们都并且必须被覆盖。
看看这里:http: //code.google.com/intl/de-DE/android/add-ons/google-apis/reference/index.html
As far as I know OSMDroid uses same API as google. Google's
ItemizedOverlay
has two methodsonTap(GeoPoint p, MapView mapView)
andonTap(int index)
which bothand must be overwritten.
Have a look here: http://code.google.com/intl/de-DE/android/add-ons/google-apis/reference/index.html