0

I'm currently developing an android application which uses the Google Maps API V2. As you can see in the topic title, the Map class extends MapFragment. What I want to do is set a minimum zoom so that, we could see all the continents on the screen when we zoom out. Currently, we can't see all the continents with the default map settings.

Cœur
  • 37,241
  • 25
  • 195
  • 267
ChAndroid
  • 35
  • 8

2 Answers2

0

You can update the position of the camere + zoom level in this way:

mCameraZoom = 15.00f;
mMap.animateCamera(CameraUpdateFactory.newCameraPosition(CameraPosition.fromLatLngZoom(l, mCameraZoom)));
fasteque
  • 4,309
  • 8
  • 38
  • 50
0

This is currently not possible to show entire world, but it has already been requested on gmaps-api-issues. Star that issue to give it a higher priority.

MaciejGórski
  • 22,187
  • 7
  • 70
  • 94