up vote 12 down vote favorite
5
share [g+] share [fb]

Does anyone know how to set the location (as it's picked up in CoreLocation services) in the iPhone Simulator? I've been browsing online docs all day and I can't find an answer. Speak up!

link|improve this question

34% accept rate
feedback

6 Answers

In my delegate callback, I check to see if I'm running in a simulator (#if TARGET_ IPHONE_SIMULATOR) and if so, I supply my own, pre-looked-up, Lat/Long. To my knowledge, there's no other way.

link|improve this answer
Starting with Xcode 4.2, there is now a way under the Debug menu on the simulator using the Location entry that allows setting a custom location or selecting from some predefined rides and locations. – progrmr Nov 30 '11 at 14:54
feedback

As of iOS 5, there simulator has a configurable location.

Under the Debug menu, the last entry is "Location"; this gives you a sub menu with:

  • None
  • Custom Location
  • Apple Stores
  • Apple
  • City Bicycle Ride
  • City Run
  • Freeway Drive

Custom Location lets you enter a Lat/Long value. Bicycle ride, City Run, and Freeway Drive are simulation of a moving location (in Cupertino, of course).

Of course, this does nothing to help with debugging for iOS 4 (or earlier); but it's a definite improvement!

link|improve this answer
feedback

The kind folks at FutureTap have made the FTLocationSimulator available for free at GitHub. It allows you to prepare a test route using for instance Google Earth, and then have the simulator feed these coordinates to your app.

I've written a blog post about how to use FTLocationSimulator to easily switch between multiple routes during testing of the location features.

link|improve this answer
feedback

Better late than never :)

I just came across this iSimulate which allows you to send Fake location to the app. The solution is NOT free.

> Q: How does iSimulate work? 

> A: When added to your project, the iSimulate
> SDK library creates a listening server
> on your iPhone Simulator that waits
> for a connection from an iPhone/iPod
> running the iSimulate client. When
> such connection is established, the
> iSimulate client running on your
> iPhone/iPod captures all data from the
> accelerometer sensor, the touch
> events, the location and device ID and
> streams them to the server. The
> iSimulate SDK library then recreates
> all input events synthetically. This
> is entirely transparent to your
> application and does not interfere
> with your application's functionality.

Anyway, i am planning to get this. will update more soon!

link|improve this answer
I just contacted the developers: "In the Options of iSimulate, accessible from the top-right button in the "Select Computer to Connect to" screen, you can select one of four other locations to use." So, not much help really. – sbwoodside Sep 1 '09 at 21:44
feedback

starting xcode 4.2 you can use predefined locations.

link|improve this answer
1  
How can i use the predefined location. can u please explain in detail ??? I want to know about it. – iDroid Explorer Aug 23 '11 at 7:20
feedback

Where you want to set your location? you can use mapkit api to show u location's. see icodeblog.com for more detail on how to use mapkit. Also you can store your desired cordinates just create an object CLLocation2D *location; location.longitude=your desired longitude value; location.latitude=your desired latitude value;

link|improve this answer
This was an old question from when I wasnew to the SDK. I now realize there is no support for automating CoreLocation in the Simulator, which is a shame. – Cliff Nov 8 '09 at 0:42
feedback

Your Answer

 
or
required, but never shown

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