Tagged Questions
The Core Location framework is a proprietary Apple API on its iOS powered devices, such as iPads and iPhones which allows programmers to programmatically obtain information on the current location of the device in terms of latitude, longitude, altitude, heading and speed.
48
votes
4answers
4k views
How to solve Xcode 4.1 (LION) GPS error?
My project worked perfectly on simulator+device,
but now, after upgrading to lion os and xcode 4.1, I get this error when gps is active!
server did not accept client registration 68
It's a gps ...
20
votes
8answers
18k views
Testing CoreLocation on iPhone Simulator
UPDATE: As of iOS 5 and Xcode 4.1 is is now possible to test location in the simulator and even define routes. See http://developer.apple.com for more details.
Legacy Question
Is there anyway to ...
15
votes
7answers
2k views
What causes (and how can I fix) this odd Core Location error?
ERROR,Generic,Time,320195751.128,Function,"void
CLClientHandleRegistrationTimerExpiry(__CFRunLoopTimer*,
void*)",Registration timer expired,
but client is still registering!
There are only ...
13
votes
3answers
2k views
Core Data and Core Location
I have a Core Data database with latitude and longitude properties. Is there a way to use Core Location's getDistanceFrom: method to find the five nearest locations to a CLLocation obtained from the ...
12
votes
5answers
1k views
How can I prompt the user to turn on location services after user has denied their use
I have an application with an explicit user interaction that makes use of the user's current location. If the user denies access to location services, I would still like subsequent uses to prompt the ...
12
votes
2answers
15k views
Optimizing CLLocationManager/CoreLocation to retrieve data points faster on the iPhone
I'm currently using CoreLocation + CLLocationManager in order to compare a users current location to N amount of other locations. The problem I'm facing is I'm dealing with urban areas where locations ...
10
votes
3answers
130 views
Is an Xcode command line tool project allowed CoreLocation permissions?
I have a Xcode 'Command Line Tool' project written in C++. I recently added the CoreLocation framework and associated code to find the users location.
Usually, when I implement the CoreLocation ...
10
votes
3answers
5k views
error: server did not accept client registration 68
I am trying to build and run the WhereamI.app example of the Big Nerd Ranch book: iOS Programming, chapter4.
Compiling works just fine and it runs but the output to console is: server did not accept ...
10
votes
2answers
3k views
What are the rules behind “X would like to use your current location” on the iPhone?
Using location-awareness on the iPhone triggers the "X would like to use your current location" - "Don't allow"/"OK". In the CLLocationManager documentation, it is stated:
"The user has the option of ...
9
votes
3answers
4k views
How do I get a background location update every n minutes in my iOS application?
I'm looking for a way to get a background location update every n minutes in my iOS application. I'm using iOS 4.3 and the solution should work for non-jailbroken iPhones.
I tried / considered ...
9
votes
6answers
9k views
Simulating location updates on the iPhone Simulator
I want to allow users to set the GPS information on the iPhone Simulator via GUI.
But I'm not sure how to archieve this - it seems that this tool called iSimulate does this somehow by installing an ...
9
votes
3answers
17k views
What's the easiest way to get the current location of an iPhone?
I already know how to use the CLLocationManager, so I could do it the hard way, with delegates and all that.
But I'd like to have a convenience method that just gets the current location, once, and ...
8
votes
2answers
483 views
Definitive algorithm for determining most accurate returned from iPhone CoreLocation?
Has anyone nailed this down yet?
I've read a lot of forum postings and I still can't tell if this is a settled question...
Given that didUpdateToLocation() can return cached or inaccurate information ...
7
votes
2answers
414 views
How can I disable any CLRegion objects registered with -startMonitoringForRegion?
I am using a NavigationController to display a list of geo-fences available to the user. At the top there is a global on/off switch that I would like to use to disable any fences registered with ...
7
votes
3answers
557 views
Trigger significant location change manually
Is there a way to manually tell the device to dispatch a significant location change notification that will wake up any applications registered for this notification?
This is for testing only, and I ...
7
votes
5answers
780 views
How to wait until location is completely found? (Core Location)
I have a problem within my app. I'm trying to find the user's location to the best preciseness in order to determine their zip-code. Currently I have a button that, when pressed, starts a method ...
7
votes
2answers
2k views
Calculating bearing between two CLLocationCoordinate2Ds
Very "simple" problem: given two CLLocationCoordinate2Ds, how can I get the bearing (as radians) from the first to the second? I've done a lot of research and studying on this, both the general ...
7
votes
5answers
10k views
How to retrive user's current city name?
hii
i want to retrive user's current city name ... can any one help me ..
urget require ..
thanks
6
votes
2answers
880 views
Using GPX route or track for testing in Xcode 4.2
Has anyone had any success using a GPX route or track to test location aware apps that depend on movement in Xcode 4.2? I have been able to get it to use a single waypoint in a GPX file or even get it ...
6
votes
1answer
906 views
CLLocation Category for Calculating Bearing w/ Haversine function
I'm trying to write a category for CLLocation to return the bearing to another CLLocation.
I believe I'm doing something wrong with the formula (calculous is not my strong suit). The returned bearing ...
6
votes
5answers
4k views
Measuring velocity via iPhone SDK
I need to implement a native iPhone app to measure the velocity of the phone (basically a speedometer). I know that you can do so via the CoreLocation API fairly easily, but I am concerned about ...
5
votes
2answers
57 views
How to test location based iPhone application for pre development or beta testing from desktop?
I want to test my Location based application that uses CLLocationManager to find my current locaiton and perform other operations.
Please let me know how can i test it
5
votes
2answers
150 views
Bring up the “App Would Like to Use Your Current Location” dialogue again [closed]
Possible Duplicate:
Is it possible to call alert “Allow to use current location” manually?
in my app, all of the functionality is based on the users current location. The ...
5
votes
0answers
69 views
Iphone sdk save drawings without whole context
I want to capture screen of my view from my iPhone app. I have white background view and on that I draw a lines on that view's layer using this method .
- (void)draw {
CGContextRef context = ...
5
votes
6answers
384 views
Location services don't stop when application is terminated
I'm currently developing an iPhone application which needs location services for various use including AR.
I test everything on simulator and on my iPhone 3GS and everything went well.
I recently ...
5
votes
1answer
266 views
How can I tell if an iOS device has a GPS?
For an iPad, or iPod touch, is there a way to find out if the device has GPS?
Extra Credit: What if the iPad itself does not, but it is connected to a third-party GPS unit? Can I determine this?
5
votes
2answers
503 views
Location services are not functional in iOS 4.3 simulator running on Mac OS 10.7 with Xcode 4.2
I have built an iOS app that leverages Core Location Framework. I have Xcode 4.2 installed and Lion and now Location services are not functional.
Anyone know if there is a patch or workaround for ...
5
votes
1answer
258 views
Sorting geospacial items using coredata on iOS. Fastest way to update all 'distance' attributes
I'm developing an app that allows you to search for items and sort by distance from a given point. The approach I'm using is that when I ingest the data from the remote API, I calculate the distance ...
5
votes
1answer
692 views
how to tell an iOS device to stop remembering / forget location services preference for a specific app
I want to test the behavior of a "first-time" app install with regard to location services. The problem is, my iPhone 4 Settings app "remembers" my app's location services preference, even after I ...
5
votes
3answers
729 views
What determines the presence of the iPhone Location Services icon in the status bar?
Here's my situation. I'm developing an iPhone application that uses Core Location to determine the device's location. There is an icon: the Location Services Icon, that appears in the device's ...
5
votes
3answers
6k views
Core Location in iPhone Simulator 3.2 (iPad)
So,
i'm trying to port my app to iPad.
I'm using CoreLocation.
Apple says the iPad does have
Location:
Wi-Fi
Digital compass
Assisted GPS (Wi-Fi + 3G model)
Cellular (Wi-Fi + 3G model)
so it ...
5
votes
2answers
3k views
Distance between two coordinates with CoreLocation
I need to calculate the distance (in meters and miles) between two coordinates given
How can I do that?
4
votes
0answers
94 views
From rectangle Get Latitude n Longitude of MKMapView [closed]
In my Ipad application I am drawing a rectangle for x height and y Width on MapView. I want the latitude n longitude of that four Vertices. How can I get that latitude n longitude for those four ...
4
votes
1answer
289 views
Core Location not requesting user permission
An application I was testing asked for user location on first device launch. I have uninstalled the application, deleted the build folder, and cleaned all targets, but core location never requests ...
4
votes
1answer
925 views
Background GPS in iOS. Is this possible?
I was wondering if it was possible to get the location of the iPhone with an app that isnt running, or at least running in the background. What I want to do is have the iPhone send a push ...
4
votes
4answers
926 views
iOS CoreLocation Altitude
Prior to iOS 4.0+, CoreLocation was reporting altitude correctly, now it always reports as 0 ft.
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation*)newLocation ...
4
votes
3answers
3k views
Open Maps app from Code - Where/How to find the “Current Location”?
I am opening Maps app to show directions from user's Current Location to a destination coordinate, from my code. I am using the following code to open the Maps app. I am calling this code when a ...
4
votes
3answers
5k views
distanceFromLocation - Calculate distance between two points
Just a quick question on Core Location, I'm trying to calculate the distance between two points, code is below:
-(void)locationChange:(CLLocation *)newLocation:(CLLocation *)oldLocation
{
...
4
votes
2answers
3k views
Re-enable iPhone Simulator location services
I have disabled location services on the simulator with the "Don't ask again" option set, thinking that I could re-enable it later, but now I can't find out how.
Can someone point me out where to ...
4
votes
2answers
1k views
Why the CLLocationManager delegate is not getting called in iPhone SDK 4.0?
This is the code that I have in my AppDelegate Class
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
CLLocationManager ...
4
votes
4answers
3k views
MKReverseGeocoder server returned error: 503
Currently i am developing an iPhone application where i have to show user's current city and location for which i am using Mapkit Framework.When i build the application it works fine and show me the ...
4
votes
2answers
1k views
iPhone SDK: Do I need to ask user for permissions to use GPS?
In my iPhone application I need to use GPS (CoreLocation to be exact) to get current position of the device. I know that most (if not all) applications using GPS have a popup implemented asking the ...
4
votes
2answers
1k views
How does the iPhone learn new WiFi locations in terms of using them for location estimates
I know the iPhone can and does use WiFi proximity to get approximate location. This obviously only can occur when some database in the sky knows the approximate location of that WiFi hotspot. My ...
4
votes
2answers
6k views
Obtain user location from a MKMapView
Is it possible to use the MKMapView's own location manager to return the users current location to pass into a webservice?
I have mapView.showsUserLocation=YES; and this does return a valid blue dot ...
4
votes
2answers
2k views
CLLocationManager Simulator to simulate car moves?
I'm looking since quite a long time something like a CLLocationManager simulator that would enable me to simulate GPS positions (CLLocation instances that could be retrieved through the ...
4
votes
1answer
1k views
Core Location keeps asking for permission
I could have sworn that the expected behavior for the core location permission dialog is something like this:
if the user clicks "Yes", it will not be shown again
if the user clicks "No", it is ...
4
votes
4answers
24k views
HowTo initialise MKMapView with a given user location?
My app knows the current user position (CoreLocation.framework).
As soon as the user opens a new MapView his iPhone starts searching for the current position again.
Is it possible to skip that or to ...
3
votes
2answers
329 views
Simulating location changes for `startMonitoringSignificantLocationChanges`
I am writing an iPhone app and using Location Services. I am using the startMonitoringSignificantLocationChanges method on CLLocationManager. (As I understand, this is for low power, low accuracy ...
3
votes
2answers
82 views
iOS CoreLocation not working over 3G in USA only
My app is unable to determine lat/long coordinates over 3G in North America. It works perfectly when connected to Wi-Fi. This has been confirmed with both AT&T and Verizon with iOS 5. In the UK it ...
3
votes
1answer
87 views
How accurate is CoreLocation's accuracy measurement
I have been testing the accuracy of various aspects of CoreLocation and have been surprised to find the accuracy value supplied on new and old locations passed to the CLLocationMangerDelegate method: ...