sdargutev

Results 6 comments of sdargutev

oh, i guess different people different needs :) A simple Toggle would be nice. And thank you for pointing out how i can exclude them!

The idea is to set a high enough min scale limit so that only a subset of the markers is shown at once. This is still a chance to place...

ok i will see how it goes... thank you

Actually for such a scenario with many many many markers, it probably makes more sense to use raw drawables as markers than views. I just tried that and it is...

Well technically all the markers are contained in one single view. They are just drawables. No need to inflate a view for each marker. The conventional markers layout would still...

Would something like this not be possible? ``` public View addMarker(View view, LayoutParams params) { addView(view, params); markersList.add(view); return view; } public void removeMarker(View view) { removeView(view); markersList.remove(view); } ......................