CameraPosition currentPlace = new CameraPosition.Builder()
    .target(latLon)
    .bearing(0).tilt(65.5f).zoom(18f).build();
    map.moveCamera(CameraUpdateFactory.newCameraPosition(currentPlace));
	위와 같은 방식으로 카메라를 이동 시킨 후
	bearing만 따로 변경할수 있는 방법이 없을까요??
	계속 찾아보고 있는대 당최 방법을 모르겠네요.
	조언 부탁 드립니다~!