// u klasu private static final LatLng AMFITEATAR = new LatLng(44.873222,13.850155); // u switch case R.id.menu_gotolocation: CameraPosition cameraPosition = new CameraPosition.Builder() .target(AMFITEATAR) // Sets the center of the map to // Amfiteatar .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 mMap.animateCamera(CameraUpdateFactory.newCameraPosition( cameraPosition)); break;