Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

12 Answers

up vote 127 down vote accepted

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

telnet localhost 5554

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

geo fix <longitude value> <latitude value>

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.

share|improve this answer
6  
using geo fix i have also set mock latitude and longitude still getting null location. – UMAR Feb 17 '10 at 11:03
adding many values through telnet now it is working.. i dont know why entering two or three values it was not working.. it works untill i close the emulator when i close the emulator i have to enter mock values again. – UMAR Feb 17 '10 at 11:53
or simple way turn on gps in emulator and go to emulator control give dummy lat,long values and send you will get those values in emulator as a gps location. – UMAR May 23 '11 at 11:10
This doesn't seem to work. I have a GPS logger running in the emulator, which prints a debug statement in the onLocationChanged handler, and setting the lat/long via geo shows no output... – Cerin Jul 16 '12 at 6:23
But what about the permissions in the AndroidManifest.xml? – MrBr Apr 4 at 15:36

I was looking for a better way to set the emulator's GPS coordinates than using geo fix and manually determining the specific latitude and longitude coordinates.

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:

android-gps-emulator

Hopefully it can be of use to help others who will undoubtedly stumble across this difficulty/question as well.

android-gps-emulator


Notes:

  • mercurial repository
  • requires Maven
  • doesn't currently support multiple coordinates (but feel free to contribute!)
share|improve this answer
Outstanding tool! Thank you so much! – Joel Anair Jul 18 '12 at 23:43
Really great, thanks a ton! :) – Roland Tiefenbrunner Apr 30 at 18:29

If you're using Eclipse, go to Window->Open Perspective->DDMS, then type one in Location Controls and hit Send.

share|improve this answer
1  
This is by far the easiest method i have seen. Make sure you set up you AVD with GPS support, then in the DDMS perspective click on the emulator that is running under Devices, choose the Emulator Control tab on the center-right pane then at the bottom is the Location Controls section SteveCav mentioned (Using Eclipse Juno 4.2 for Java Developers with the latest ADT). My Location Controls panel was even preloaded with location data. – Steven Magana-Zook Nov 17 '12 at 21:03

Assuming you've got a mapview set up and running:

MapView mapView = (MapView) findViewById(R.id.mapview);
final MyLocationOverlay myLocation = new MyLocationOverlay(this, mapView);

mapView.getOverlays().add(myLocation);
myLocation.enableMyLocation();

myLocation.runOnFirstFix(new Runnable() {
    public void run() {
        GeoPoint pt = myLocation.getMyLocation();
    }
});

You'll need the following permission in your manifest:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

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.

share|improve this answer
1  
but my friend where are the longitude and latitude ?? – UMAR Feb 17 '10 at 10:06
i have tried using this ans sending mock values to emulator control but when i press send button it does not do any thing no message nothing appears to confirm values sent or not. seocnd thing GeoPoint g= myLocation.getMyLocation(); is returning null value. – UMAR Feb 17 '10 at 10:19
Are you sure that you're using it within runOnFirstFix? Because that's the event that's raised when the device first receives GPS position, so if that's ever raised, getMyLocation should definitely return a value. – David Hedlund Feb 17 '10 at 10:25
using above code oncreate and noticed that runOnFirstFix is not being called... – UMAR Feb 17 '10 at 11:13

Using the "geo" command in the emulator console

To send mock location data from the command line:

  1. Launch your application in the Android emulator and open a terminal/console in your SDK's /tools directory.
  2. Connect to the emulator console:

telnet localhost 5555 (Replace 5555 with whatever port your emulator is running on)

  1. Send the location data: * geo fix to send a fixed geo-location.

        This command accepts a longitude and latitude in decimal degrees, and an optional altitude in meters. For example:
    
        geo fix -121.45356 46.51119 4392
    
share|improve this answer

See Obtaining User Location

Look under Providing Mock Location Data. You will find the solution for it.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer
You don't need to specify a process... Or perhaps DDMS in 2010 requires doing that. – user942821 Feb 13 '12 at 22:03

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.

telnet localhost 5554

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.

geo fix long lat    
geo fix -121.45356 46.51119 4392
share|improve this answer

Dalvik Debug Monitor > Select Emulator > Emulator Control Tab > Location Controls.

DDMS -- android_sdk/tools/ddms OR android_sdk/tools/monitor

share|improve this answer

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

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" ></uses-permission>
<uses-permission android:name="android.permission.INTERNET" ></uses-permission>
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.