Map view following user - MyLocationOverlay type functionality for Android Maps API v2
I switched to v2 of Maps for Android, and I am trying to port over the following functionality: With MyLocationOverlay I can show the devices current location (Blue Dot). When the user's location changes and the dot reaches the edge of the visible area, the map animates out so the dot becomes the center of the view, in real time. In v2, I am using SupportMapFragment with getMap().setMyLocationEnabled(true). The current location appears as a blue dot(arrow), but when the device changes location, the map view does not shift and the dot eventually leaves the view. Any ideas? UPDATE : Google