Hello MapView shows how to place overlays. I think you want to use the MyLocationOverlay class documented in the google APIS reference to get your current location.
"http://developer.android.com/guide/topics/location/index.html" talks about the location services supported by the device.
If you're looking for provider-specific solutions, then look at the following for an example of using a Sprint service:
http://www.androidref.com/#SprintServices
Jay
In order to get the current location of your phone I use
LocationManager locationManager = (LocationManager)this.getSystemService(LOCATION_SERVICE);
Criteria criteria = new Criteria(); criteria.setAccuracy(Criteria.ACCURACY_COARSE); String bestProvider= locationManager.getBestProvider(criteria, true); Location loc = locationManager.getLastKnownLocation(bestProvider);
define uses-permissions in the AndroidManifest.xml for these (use the fine location for other stuff)
In my application I would like to pass a paramter to the maps intent in order for maps to show a marker, but have found no way of doing it. Creating a location overlay as suggested by Rick (who is not Fred) is probably the way to go