I have a mapView with 600 pois on it, each poi is showing the same PIN.
The movement of the map is very slow when the 600 pois are being showed at once.
It is possible to show all of them without slowing the map movement?
This is part of my code:
My bitmap for the pins:
Bitmap marker= ResourceManager.getImageResourceByName(pinId).getBitmapOfWidth((int) (App.getWidth()*0.14));
d = new BitmapDrawable(marker);
d.setBounds(0 - d.getIntrinsicWidth() / 2, 0 - d.getIntrinsicHeight(), d.getIntrinsicWidth() / 2, 0);
How i add the overlays (i do this in a while bucle in a async task):
this.itemizedOverlay.addOverlay(values[0]);