Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am creating a app that's going to show my location and some other devices location in the map. I don't know exactly the procedure needed to do this. I know I m gonna use Google Map V2 and location API. But not sure about what else I need. Can anyone please tell me the instructions abstractly?
All you need is the Google Map v2 and server might saved different people locations.Please Check this link.How to setup Map API v2.Also you should need a service which collects your location and sends to server which sends it to other devices and shows on map on other devices.
Why is the need of server here?
The application shows only the location of current device but you want to get the location of other devices which are using your app.So send every device location to server which collects it and store it.Now after certain interval of time send these location(latitude,longitude) to every device which is using your app and plot them on the map.
If you still have any trouble comment here.Cheers :)
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm new in android and servers, What i want is to send coordinates from a device Let's say Android Phone or GPS Module and store it in a web server so that I can create a User Interface and map the coordinates.
The GPS coordinates will be updated like every 30 sec..
This site is for addressing issues not to give codes or something but i can give you a heading.
First of all you need a back-end API,you can for example create a web page in php that accepts POST request and put them in a database.
after that you can send the coordinates VIA an HTTP request to the web page you made from your android app.
you can create an other web page that reads the saved coordinates from the database and respond with them.you can then request that page from you other app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I created one android application which will be used by multiple users, so I want to track the user's of my application using a web browser kind of application.
I Know about Android Device Manager which will track the mobile phone of google account. In this case i have to restrict my all user's to use same gmail account so that i can track all of them, But i don't want to restrict users to use same gmail for their personal mobile phone.
I am thinking is there any way by coding we can locate/mark the device on the google map of one particular account. say i have 10 user's my code has to locate/mark all these 10 users to Map of gmail account say xxx#gmail.com. is this possible ?
How to achieve this requirement? Need help!
Here you go,
You can ask users for location access rights and than keep tracking their location data (i.e. latitude and longitude values).
Once you have latitude and longitude values of all the users putting them in a google map will be a straight forward task using Google Maps API.
Hope it helps,
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am making my own indoor map for a shopping mall. I am making it on android. Please guide me about how to calculate user distance through Wifi signals and move location pin/pointer on map.
Think again before ruling out Google Maps API.
Google Maps API v2 added support to indoor maps. in fact, Google Maps also
allows you to upload your own indoor maps to be interleaved with their service.
If that doesn't work for you check Insiteo's product. I have tested it for a project I was involved in and was rather impressed.
Finally remember that even the best indoor map solution will not provide you with a decent experience
unless you can back it with an accurate indoor positioning system.
You probably want to start your search with Google's fused location provider (select PRIORITY_HIGH_ACCURACY).
Some people say its indoors performance is not as good as the team claims, but they keep improving it
all the time so I cannot really tell.
Gilad
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I have created an android application, in which i have to find the current location of the mobile. For example using my application i have to find my friends current location.If i enter the mobile number the current location of my friend has to be shown in map.Its not necessary that my friend mobile to be smart phone. How can i track them using their phone number without using GPRS? Please help me.
You can get Location if you have Internet Connection(GPRS or WIFI), otherwise you Can not get Location, Because to get Location, your Phone need to communicate with (Google Maps) and then they get your Longitude/Latitude and then give you the facility.
If you need to check your Friend's Location, for that you need your Friend Latitude/longitude Information.
But you must have Internet Connection.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I need to create an application that will show me on a map to all users who have installed my app within x distance.
It wondered if I need to save the coordinates of each user periodically in a database and read the position or is there another option
Tracking the user's location in a database will likely be your easiest option. It will also scale well. If you are only tracking a couple users, you could use another simpler data storage mechanism like an XML file, a text file, or even some sort of Application Level Variable.
I'm sure that you have done some research on how best to track your users, but this is a pretty good starting point, if you don't have one already. They are storing each location in a local database on the phone, so I'm sure that you could very easily modify it to send that same location to a web service or something.