I\'m trying to mess around with the Maps API V2 to get more familiar with it, and I\'m trying to start the map centered at the user\'s current location. Using the map.
map.
This is working Current Location with zoom for Google Map V2
double lat= location.getLatitude(); double lng = location.getLongitude(); LatLng ll = new LatLng(lat, lng); googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(ll, 20));