using google android api v2, how do we track/follow user location like the google maps app does. The user location marker stays in the center. Currently I am using
mMap.setMyLocationEnabled(isEnabled);
and
mUiSettings.setMyLocationButtonEnabled(isEnabled);
By using these two, I am able to show user location and button which centers the user on map.But if user is moving, the location arrow goes out of the screen.
I can fix this by listening to LocationListener and animate the map to new location. Is there any other way then this ????
This task was quite easy if using iPhone maps api.
