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
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||
|