I made a simple Android application which gives the latitude and longitude of the place where I am via GPS and I want to send the coordinates to a Webpage and represent them on google maps. Which is the simpliest possibility to send the data to the server ?
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.
|
|
|
Android uses HttpClient for http communications. Use it to post the data to your server. Of course you also need to build a web application that will take latitude and longitude and navigate a google maps component to that position. Edit: If I understood correctly from your comments, you want to open a specific url in your Android phone. You can do this with the following code:
See here for details. |
|||||
|