Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
3k views

How to store CLLocation using Core Data (iPhone)?

I'm trying to save a location and retrieve the location on a map afterward using Core Location, MapKit and Core Data frameworks. What I've done is I just made entity named POI and added properties ...
6
votes
1answer
902 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 ...
4
votes
1answer
2k views

CLLocationManager and accuracy issues - any experiences?

So I am dealing with some accuracy issues with iPhone GPS. I have an app which uses location. In the delegate method locationManager: didUpdateToLocation: fromLocation: I am being returned a ...
4
votes
9answers
5k views

CLLocationManager on iPhone Simulator fails with kCLErrorDomain Code=0

CLLocationManager on iPhone Simulator is supposed to fake Cupertino (isn't it?) but it does NOT, it fails with kCLErrorDomain Code=0 instead. LocationManager's delegate receives the message ...
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 ...
3
votes
1answer
292 views

What do horizontalAccuracy and verticalAccuracy of a CLLocation refer to?

I've been working on a location based app recently and am noticing some strange values for CLLocation. I often get a horizontalAccuracy of 1414m and a verticalAccuracy of -1. Any clue what this ...
3
votes
1answer
346 views

Store location data using Core Data

I was wondering what approach is recommended for storing an array of CLLocation objects (forming a route or path) in a Core Data database? Is serialization a good approach or would you recommend to ...
3
votes
1answer
6k views

cllocation and mkreversegeocoder

i'm try to retreiving city name with cllocation and mkreversegeocoder. in my viewdidload method i istance cllocationmanager: self.locManager = [[CLLocationManager alloc] init]; locManager.delegate = ...
2
votes
1answer
35 views

Is startUpdatingMyLocation mandatory to call the location manager's didUpdateToLocation method in iphone sdk

I need a clarification that. Is startUpdatingMyLocation method mandatory to call didUpdateToLocation? isn't the didUpdateToLocation method automatically called when the location is updated? Guy's ...
2
votes
1answer
110 views

Location manager giving old locations with new timestamps

I'm having the following problem in my iPhone app: I enable the location manager on a regular basis and I do wait for multiple location updates. When receiving a new location, I check the timestamp ...
2
votes
1answer
147 views

How to show compass on Screen?

I am new to iOS development. My objective is to show a compass on Screen. I have a latitude and longitude of a certain location. I have gotten my current latitude and longitude by using CLLocation. ...
2
votes
0answers
220 views

CLLocationManager and iPad Settings - missing app in Settings

I recently had an ipad app approved by Apple and made available on the App Store. I mention this because my app uses location services and implements all of the practices outlined by Apple. And I'm ...
2
votes
1answer
187 views

Order of CLLocation objects in distanceFromLocation:

this is my first time posting a question here, but I have found a lot of help from other people's questions. My question refers to the distanceFromLocation: function in CLLocation. I had assumed that ...
2
votes
2answers
170 views

Update a label with speed every x seconds

I'm developing my first iphone application. I have to update a label with the device speed every x seconds. I have created my own CLController and I can get device speed but I don't know if I have got ...
2
votes
2answers
464 views

iPhone - CLHeading: how can I transform the trueHeading to a vector

I know how to get the coordinates of the magnetic heading: heading.x, heading.y, heading.z The thing is that I'd need the (x, y, z)-vector of the trueHeading. How can I create this vector? Thank you! ...
2
votes
4answers
2k views

Core Location region monitoring

Does anyone know any knowledge of using this: - (void) startMonitoringForRegion:(CLRegion *)region desiredAccuracy:(CLLocationAccuracy)accuracy I am trying to implement it into my project but: - ...
2
votes
1answer
767 views

Running CLLocation when Application is in background

How is it possible to keep CLLocation updating in the background. I believe you need to register the application to do this in the Application delegate but I can not find a reference to this anywhere? ...
2
votes
3answers
493 views

Showing an arrow that is heading a specific location

Does anyone know how to place out an arrow that points to a specific annotation depending on my current heading. For example; I want the arrow to be vertical when the current heading is the same as ...
2
votes
1answer
401 views

iphone 4 compass and map

how to use compass based on direction on google maps using iphone 4 ,as MAPS app doing any tutorial to refer?? Thanks
2
votes
1answer
289 views

CLLocation generates strange Error

I have got a problem with a CLLocation. I wanted to know the distance between two coordinates to show it next to the title of the location in a tableView: static NSString *CellIdentifier = ...
2
votes
3answers
858 views

How to calculate speed of our car using iphone

for my application i want to calculate my car/bike speed using iphone who can i do that , and it should run continuously run in background .... please help me
2
votes
2answers
2k views

CLLocationCoordinate2D without knowing how many will be in the array?

I need to build an array using something like the following: CLLocationCoordinate2D points[4]; points[0] = CLLocationCoordinate2DMake(41.000512, -109.050116); points[1] = ...
2
votes
2answers
1k views

Distance between Long Lat coord using SQLITE

I've got an sqlite db with long and lat of shops and I want to find out the closest 5 shops. So the following code works fine. if(sqlite3_prepare_v2(db, sqlStatement, -1, &compiledStatement, ...
2
votes
2answers
799 views

best practice to obtain time zone for iPhone vs iPod Touch

I am creating an app that requires the users current time zone. If the device being used is an iPhone and the user has their Time Zone set to automatically change, I think I can be fairly confident ...
2
votes
1answer
1k views

How to remove cache of cllocation?

Hello all I am developing an iPhone app which is a location aware app . Currentlly the app is working fine except the caching of previous location . The first time I start the application location ...
1
vote
0answers
56 views

How to sort a nsarray with CLLocations from north west to south east?

I want to sort an array with CLLocations so that the locations are sorted how they are going to be placed on the map. I mean the first item of the array is the most North-West location and the last ...
1
vote
2answers
70 views

Having trouble calculating accurate total walking/running distance using CLLocationManager

I'm trying to build an iOS app that displays the total distance travelled when running or walking. I've read and re-read all the documentation I can find, but I'm having trouble coming up with ...
1
vote
2answers
42 views

Need help to improve latitude & longitude accuracy

I'm using the below code: locationManager.distanceFilter = kCLDistanceFilterNone; locationManager.desiredAccuracy = kCLLocationAccuracyBest; Where locationManager is an object of class ...
1
vote
1answer
128 views

RestKit RKObjectMapping to CLLocation

I am using RestKit's Object Mapping to map JSON data to an object. Is it possible to map the latitude and longitude JSON attributes to a CLLocation variable in my Objective-C class? The JSON: { ...
1
vote
2answers
139 views

MonoTouch : How to serialize a type (like CLLocation) not marked as Serializable?

I'm working to an iPhone project using MonoTouch, and I need to serialize and save a simple object belonging to a c# class with a CLLocation type as data member: [Serializable] public class MyClass { ...
1
vote
1answer
137 views

Find if device is pointing in the right heading / direction?

I would like to find the distance to a location and which direction the device is heading in relation to that location. I've got the distance working but cant work out how to find the which way the ...
1
vote
1answer
175 views

CLLocationManager - Coordinates to Address

I'm using a CLLocationManager in an attempt to find the address that the user is currently at. How can I convert the coordinates returned by the class to an actual address/business without a visual ...
1
vote
0answers
608 views

iOS Background task (NSThread) dies

Some days ago I posted a question about NSThread. Finally I managed to make it run in background every minute. The aim of the app is to get the location and then call to a webservice to update it on ...
1
vote
1answer
112 views

Simple, no frills ,get LAT/LON in iPhone

I just want to display the lat/lon on the screen of an iPhone. I've read a half dozen examples, and everyone decides to do 3 other cool things at the same time and soon I am in over my head. I would ...
1
vote
1answer
39 views

How can I calculate total hours of journey between 2 corelocation objects?

How to calculate total hours of journey between 2 corelocation objects ??
1
vote
1answer
165 views

CLLocationManager, MKReverseGeocoder, cleaning up memory

In the More iPhone 3 development book, after the author is done with the locationManager delegate method of getting updates, he puts this at the end of that method: - ...
1
vote
2answers
139 views

App crashes when accessing CLLocation

I have a CLLocation that I set to the current location within the following function - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation ...
1
vote
3answers
420 views

iPhone Brainstorm - CLLocation in Background - Polling every 15 minutes

Here is the scenario. I need to have an application which polls a web service with the users location every 15 minutes whether in background / foreground. At the moment I: Start / Restart the ...
1
vote
1answer
69 views

why cant I view a struct value on the previous view controller

I'm pretty new to Objective-C (and C itself) so this is probably really easy, but I'm a bit stuck. I've got a view controller that requires some input from the user, I have a table view that has a ...
1
vote
1answer
267 views

MapView regionThatFits set using horizontalAccuracy

I'm looking for a method to convert meters to a mapview region. CLLocation's horizontalAccuracy is a double, representing the accuracy in meters. regionThatFits: takes an MKCoordinateRegion which has ...
1
vote
2answers
684 views

CLLocation manager keep getting same latitude and longitude when clicking button?

This is my first question in this site. I have this serious problem.... I'll explain this from the beginning… in my app i need to get the current location of the user when the user click on the ...
1
vote
1answer
868 views

Drawing route for two points on mapkit

I'm doing an iphone app concerning geolocation. Its working fine with mapkit and cllocation, now I want to draw a path for two points on the map, I dont need to be aware of streets or stuff like this, ...
1
vote
0answers
476 views

ALAssetPropertyLocation not working on any iOS 4.0+ on 3gs iPhones but working perfectly on iPhone4

I've got an app with location services ENABLED (from settings etc), and I'm reading all the photos from my device using ALAssetsLibrary. It works perfectly on iPhone4 iOS 4.2.1, but the same code and ...
1
vote
1answer
389 views

MKMapKit true distance between two annotations

I want to make a application that calculates the distance between the user's current location and the nearest something (store, whatnot). Is there any way to obtain the real distance (following public ...
1
vote
2answers
199 views

How to tell if you're facing a specific CLLocation in iPhone app

So I'm making an Augmented Reality app and I'm a little unsure how to tell, given your current location and heading information and a second location, if you're actually facing that location. I think ...
1
vote
1answer
413 views

Is it possible to show a path between two annotations using the MapKit API?

Dear fellow iPhone/Objective-C developers: I am working on an app that will show the user the closest locations from a database to the user. When the user selects one of these locations from a list, ...
1
vote
1answer
405 views

background process in iphone sdk?

I want to do local push Notification (giving alert) when the user comes in particular locations(in range).is it possible to do it? any example and tutorial please?
1
vote
1answer
2k views

Need help using iPhone method -(CLLocationDistance)distanceFromLocation:(const CLLocation *)location

Dear fellow iPhone/Objective-C developers: I am a new iPhone developer learning Objective-C, and am trying to dynamically calculate the distances between the users latitude/longitude coordinates, ...
1
vote
2answers
622 views

Need help with iPhone's CLLocation class to assign latitude and longitude to variables

Dear fellow iPhone/Objective-C developers: I am trying to learn how to use the CLLocation class for the purpose of building an iPhone app that takes the user's current location, and then uses it to ...
1
vote
3answers
468 views

How to find the long and lat of a city on the iphone?

I am trying to find the long and lat of a city on the iphone. Say the user is searching for London, I would call some function that would retrieve the long and lat of London. I have looked on the web ...

1 2 3