Globe rotate animation in android

726 Views Asked by At

Guysss currently I am using

CameraPosition cameraPosition = new CameraPosition.Builder().target(
                    latLng).zoom(16).build();

            map.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

But I need globe rotate animation. In such a way that when user open's app a marker float around globe having in sync with zoom and land at user's current location.

My major concern is how to show 3d globe like google earth in android.

I have listened about webglearth. But there is no api of webglearth available for android. Please suggest me some way to overcome this problem.

0

There are 0 best solutions below