I develop an application that retrieves the location of the user.
Is that I can test on my emulator (of Eclipse) the geolocation with GPS or other?
thank you
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.
You can connect to the emulator using
telnetand then use the commandgeo fix <latitude> <longtitude>to simulate a change in latitude and longtitude/toolsdirectory of your SDK’s installationtelnet localhost <port number>. You will get the port number from the emulator windowgeo fix <x> <y> <z>to change the location. X and Y are latitude and longtitude in degrees and Z is altitude in meters (it’s optional).This page has details
Edit: Corrected and added more info