I want to create an android application where there will be multiple users with android phones and I have to monitor their location from a web site. Is that possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
All you need to do is write a web service which accepts the location information from the user. Now create an android service application which communicates with this web service and gives it location information on regular intervals.
Android application will get this location information from GPS – latitude and logitude information along with the time from system and update its status on web server.
On web server, you can create a page which will resolve the name of place based on the latitude and longitude from database.
This way, you will not only be able to know the location of user but also you can track the movements of the user.