I’d like to have a feature in my app where you could allow current location and see everyone on a map that has also allowed current location in the same app.
Any ideas how to do this??
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.
Create your web server for your application and write, at least, two apis, one to send user’s location on server and other to get all users’ locations.
When user will start using your application and allow application to use location services, send user’s coordinate to the server.
And to show nearby users, hit api to get all user’s location/(coordinates) from the server and draw them on the map.