我想在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上有没有同样的功能?谢谢您。
1条答案
按热度按时间ujv3wf0j1#
当前没有
.setVisible
方法公开以在mapboxandroid sdk中使用。我的建议是只要删除标记,并在需要时重新添加它。