Wie kann ich die Zoomstufe eines SupportMapFragment
einstellen? ich versucht, einige Antworten, die ich in ähnliche Fragen gefunden, wie dieser einen Mann namens Rob kaufen beantwortet, die vorgeschlagen:SupportMapFragment Set google maps Zoomstufe
LatLng currentLocation = mService.getCurrentLocation();
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(currentLocation) // Sets the center of the map to the current location of the user
.zoom(17) // Sets the zoom
.bearing(90) // Sets the orientation of the camera to east
.tilt(30) // Sets the tilt of the camera to 30 degrees
.build(); // Creates a CameraPosition from the builder
mGoogleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
Aber diese Lösung hat nicht funktioniert. Also, wie kann ich den Zoomlevel einstellen, wissend, dass ich einen SupportMapFragment
benutze.
Thx Mustanser arbeiten :) das funktioniert gut – TeachMePls