Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to write a background service to get latitude and longitude values. I have an Android application in which it has to find where the user is currently. Is there any way to programmatically get the latitude and longitude values from the system services (or some program)?

share|improve this question
if you want to write in Javascript then my answer can be useful. – Steven Spielberg Sep 4 '10 at 10:10
this answer can help on how-to implement: stackoverflow.com/q/5772782/492918 – WareNinja Nov 24 '11 at 16:10

2 Answers

up vote 1 down vote accepted

Use LocationManager. The documentation covers this. Here is a sample application showing its use from a service.

share|improve this answer
Thanks for your suggestions!!!!!!! – Ganesh Sep 6 '10 at 4:35

In the last few days I wrote a application to resolve the requirement. You can find it in http://geekswithblogs.net/anirudha/archive/2010/09/01/how-to-get-latitude-and-longitude-from-google-map-api.aspx

share|improve this answer
Thanks for your suggestion steven – Ganesh Sep 6 '10 at 4:34
1  
The link is broken now. – Peter Mortensen Feb 19 '11 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.