Hello, I finish the application on androyd where GoogleMap api v2 card is actively used. There is an array of objects (future markers) that are displayed on the map. The previous developer implemented the addition of markers to the map programmatically through for each, thus:
for (MarkerOptions marker : markers) ///markers-это ArrayList markers options { googleMap.addMarker(marker); //googleMap.addMarker(marker).showInfoWindow();////////////////////////////////raffa mod //googleMap.get builder.include(marker.getPosition()); } How do I implement the showInfoWindow () method on all the markers on the map without clicking on the markers?