Part of the Core Location Data Types. This is a distance measurement (in meters) from an existing location.

learn more… | top users | synonyms

0
votes
2answers
29 views

CLLocation accepts longitude and latitude greater or less than their min and max values

As far as I know, the max and min values are: latitude: [-90, 90] longitude: [-180, 180] CLLocation still accepts values beyond these limits, for example: [[CLLocation alloc] ...
0
votes
1answer
23 views

how can i convert NSNumber to CLLocationDistance?

I have to convert an NSNumber to CLLocationDistance for comparing them. So are there any formatter to do that? I searched at internet but i could not find.
0
votes
0answers
68 views

signal SIGABRT, when trying to get distance to annotations

I'm trying to calulate the distance between the userLocation and my annotations (from plist), But every time im run the mapView im getting signal SIGABRT error. I'm doing the calculate in my ...
0
votes
0answers
41 views

Send location updates to the server based on time and distance in iphone

I am new to IOS apps..Now I am developing location application.. I want to send the data to the server if the location is changed (i.e., lat,long values are changed) based on time for every 1 minute ...
0
votes
3answers
137 views

CLLocationDistance returns totally wrong values

I am using this function to get the distance from one CLLocation to another here venue.lat is NSNumber GeoAddress *address = [[GeoAddress new] init]; CLLocationCoordinate2D coord; coord.longitude = ...
-3
votes
1answer
77 views

Trying to get distance calculated from gps detected location to a number of restaurants in a plist file

I have to do a project in which I have to calculate the distance from my location which is detected by gps to a number of restaurants whose locations are in a plist file and then display the distance ...
-1
votes
3answers
134 views

How to compare the coordinates of a location to the current coords of a user

I'm comparing the coordinates of a location to the current coords of a user. The distance is outputted like: 6056609.511004132946254686 I'm not sure what measurement this is in. I want the final ...
1
vote
2answers
164 views

iOS 6 CLLocationManager last location

So, as of iOS 6, -locationManager:didUpdateToLocation:fromLocation: is deprecated. Apple suggests, instead, using -locationManager:didUpdateLocations:, which provides anywhere from one to a series of ...
0
votes
1answer
158 views

CLLocation Current Location get Location [closed]

I have seen many currentLocation questions here but I am trying to set two points using two seperate IBActions because from my understanding the Core Location updateLocation method can't measure ...
0
votes
2answers
146 views

How to track location coordinates continuously and find the distance using start and stop UIButtons [closed]

I am new to objective c. My program is when start button is pressed, the location coordinates should start tracking and the distance should get tracked simultaneously and when stop button is pressed, ...
0
votes
1answer
37 views

CLLocation `distanceFromLocation:` takes into account ellipsoid shape of the Earth

I can't seem to see it in the Docs description, but does anyone know if the above method takes into account the ellipsoid shape of Earth or is it based on a spherical shape? I assume it does, I just ...
0
votes
2answers
139 views

Getting different result from google distance API and native Distance finding function +iphone

I am working on iphone application where i need to find the points between 2 latitude and longitude I had used:- CLLocation* newlocation = [[CLLocation alloc] initWithLatitude:19.0759837 ...
0
votes
0answers
170 views

CLLocationDistance get distance

CLLocationDistance distance = [locationBase distanceFromLocation:locationCurrent]; NSLog(@"%g", distance); Hi guys I really need help with this one. I have tried a lot things but I'm not ...
0
votes
0answers
302 views

Looking to draw line between two dynamically selected points in mapkit

I am working on an app that would draw a "route" between two points on a lake that will be dynamically selected from annotations on the map. I've looked to see if anyone has tried to do this, and I ...
0
votes
1answer
321 views

problems converting data in cllocationdistance

Im trying to add to a mutable array and can not figure this out. Throws error for incompatable data types double to id. question is how do i convert distance and store it in my array. for (int i = ...
0
votes
2answers
159 views

how to rearrange tableview after i get min location from current location in iphone sdk?

i have created an application which show data from user current location. I want to sort them in assending order on the base of minimum distance found of the user. I know that i need to use this kind ...
0
votes
4answers
758 views

calculate distance between 2 coordinates iphone - best practice

I'm finishing an App in wish i need to show the user the distance between him and about 500 coordinates. using the CLLocation method to calculate it, works well, but it takes about 1 minute in iPhone ...
0
votes
2answers
228 views

GPS get the longitude and elevation separately

i use this code to get gps data - (void)locationUpdate:(CLLocation *)location { locLabel.text = [location description]; } the result look like this <+38.76856432, +11.99454301> +/- ...
0
votes
1answer
256 views

How to calculate distance and time between two CLLocation throughout the whole ride with CloudMade maps?

In my iPhone application I allow the user to choose a destination on the map, then when he starts driving toward the destination I want to give him information like: how long until he reaches the ...
0
votes
1answer
979 views

Comparing two instances of CLLocationDistance to fid the smaller one

Hi I have an array of mapAnnotations in my app. Each annotation object has an address and a coordinate. I am using my location manager to find out the user's current location which is a ...
1
vote
1answer
629 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 ...
8
votes
4answers
3k 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 ...