Hi, I haven't done it in the emulator yet (I connected it to the phone directly to get gps data and test my app), but you simply need to use the LocationManager...
http://d.android.com/reference/android/location/LocationManager.html Just add a LocationListener: http://d.android.com/reference/android/location/LocationManager.html#requestLocationUpdates%28java.lang.String,%20long,%20float,%20android.location.LocationListener%29 You then can read the current Latitude and Longitude from the Location (see Location class)... You should use the onLocationChanged() function to get each update and show it where you want... http://d.android.com/reference/android/location/LocationListener.html#onLocationChanged%28android.location.Location%29 (You sometimes need to wait to get a fix point first... also your values are in decimal, so you may need to convert() them) Greets, -Florian -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

