在android上隐藏mapbox标记

sg3maiej  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(434)

我想在android上隐藏一个mapbox标记,当我进行缩放时我想显示它。在Map框上有没有像googlemaps marker的“setvisible(true或false)”这样的函数?在谷歌Map中,你可以隐藏这样一个标记:

Marker marker = map.addMarker(new MarkerOptions()
                .position(new LatLng(49.685, 50.658))  
                .title("Paris"));
    marker.setVisible(false); // hide the marker

mapbox上有没有同样的功能?谢谢您。

ujv3wf0j

ujv3wf0j1#

当前没有 .setVisible 方法公开以在mapboxandroid sdk中使用。我的建议是只要删除标记,并在需要时重新添加它。

相关问题