I want to get longitude and latitude in Android emulator for testing.
Can any one guide me how to achieve this?
How do I set the location of the emulator to a test position?
|
I want to get longitude and latitude in Android emulator for testing. Can any one guide me how to achieve this? How do I set the location of the emulator to a test position? |
||||
|
|
|
You can connect to the Emulator via Telnet. You then have a Emulator console that lets you enter certain data like geo fixes, network etc. How to use the console is extensively explained here. To connect to the console open a command line and type
You then can use the geo command to set a latitude, longitude and if needed altitude on the device that is passed to all programs using the gps location provider. See the link above for further instructions. The specific command to run in the console is
I found this site useful for finding a realistic lat/lng: http://itouchmap.com/latlong.html If you need more then one coordinate you can use a kml file with a route as well it is a little bit described in this article. I can't find a better source at the moment. |
|||||||||||||
|
|
I was looking for a better way to set the emulator's GPS coordinates than using Unable to find anything, I put together a little program that uses GWT and the Google Maps API to launch a browser-based map tool to set the GPS location in the emulator: Hopefully it can be of use to help others who will undoubtedly stumble across this difficulty/question as well.
Notes:
|
|||||
|
|
|
If you're using Eclipse, go to Window->Open Perspective->DDMS, then type one in Location Controls and hit Send. |
|||||
|
|
Assuming you've got a mapview set up and running:
You'll need the following permission in your manifest:
And to send mock coordinates to the emulator from Eclipse, Go to the "Window" menu, select "Show View" > "Other" > "Emulator control", and you can send coordinates from the emulator control pane that appears. |
|||||||||||
|
|
Using the "geo" command in the emulator console To send mock location data from the command line:
|
||||
|
|
|
Look under Providing Mock Location Data. You will find the solution for it. |
||||
|
|
|
First go in DDMS section in your eclipse Than open emulator Control .... Go To Manual Section set lat and long and then press Send Button |
|||
|
|
|
I was trying to set the geo fix through adb for many points and could not get my app to see any GPS data. But when I tried opening DDMS, selecting my app's process and sending coordinates through the emulator control tab it worked right away. |
|||
|
|
There are two ways. First In Eclipse In Menu Select "Window" then Select "Open Perspective" then Select "DDMS". i.e Window->Open Prespective->DDMS. You will see on Left Side Devices Panel and on Right Side you will see different tabs. Select "Emulator Control" Tab. At bottom you will see Location Controls Panel. Select "Manual" Tab. Enter Longitude and Latitude in Textboxs then Click Send Button. It will send the position to you emulator and the application. Second is using telnet. In the run command type this.
If you are not using windows you can use any telnet client. After connecting with telnet use the following command to send your position to emulator.
|
|||
|
|
|
Dalvik Debug Monitor > Select Emulator > Emulator Control Tab > Location Controls. DDMS -- android_sdk/tools/ddms OR android_sdk/tools/monitor |
|||
|
|
|
If the above solutions don't work. Try this: Inside your android Manifest.xml, add the following two links OUTSIDE of the application tag, but inside your manifest tag of course
|
|||
|
|
|
I was unable to get a GPS fix on the emulator when emulator was running Android image without Google APIs. As soon as I changed the image to contain Google APIs all of the here mentioned ways to get a GPS fix worked. Make sure you select an image with Google APIs when creating AVD. |
|||
|
|