I have try the google map v2 example, the “Camera”. I know the code below set the tilt to 50 to enable the 3D tilt feature.
static final CameraPosition BONDI =
new CameraPosition.Builder().target(new LatLng(-33.891614, 151.276417))
.zoom(15.5f)
.bearing(300)
.**tilt(50)**
.build();
But after clicking the google map compass, the “tilt” seems to be set to zero, now the 3D feature disappeared and just like a original 2d map.
My problem is how to reset the “tilt” back. I know one way to do that is using “moveCamera()” and give it a CameraUpdate with a “tilt”. But is there any other way ?
Thanks.
Drag two fingers down just as in the Google maps app.