OSMdroid:彼此上方的标记 - 如何单击

发布于 2024-12-02 18:07:02 字数 159 浏览 2 评论 0原文

我对 OSMdroid 有一个大问题: 我有一张带有一堆标记的地图,其中一些标记彼此靠近,因此标记可绘制对象位于彼此之上。
现在,当用户单击此类标记“堆栈”时,将执行每个标记的 onClickListener 中的代码。
如何阻止此执行并显示“单击”的标记列表?

I have a big problem with OSMdroid:
I have a map with a bunch of markers, some of them are near each other so that the marker drawables are above each other.
Now, when the user clicks such a marker "stack" the code from the onClickListener for each marker is executed.
How can I prevent this execution and instead show a list of the markers "clicked"?

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

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

发布评论

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

评论(1

待"谢繁草 2024-12-09 18:07:02

使用 Touch 事件

public boolean onTouchEvent(MotionEvent event) {

    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN: {
            //Add this item to array        
            break;
        }
        case MotionEvent.ACTION_UP: {
            //Show list     
            break;
        }
    }
}

Using Touch event

public boolean onTouchEvent(MotionEvent event) {

    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN: {
            //Add this item to array        
            break;
        }
        case MotionEvent.ACTION_UP: {
            //Show list     
            break;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文