7

How to zoom in/out the map view such a way that it cover all markers?

i am reviewing sample code of gmap V2 given in sdk. It lays on sdk\extras\google\google_play_services\samples\maps.

Thanks in advance.

tvieira
  • 1,775
  • 3
  • 25
  • 44
Dhrupal
  • 1,843
  • 1
  • 23
  • 37

1 Answers1

62

Try using LatLngBounds :

LatLngBounds.Builder builder = new LatLngBounds.Builder();
builder.include(Latlng1);
builder.include(Latlng2);
LatLngBounds bounds = builder.build();
map.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, 20));
Emil Adz
  • 39,787
  • 36
  • 133
  • 182