Is anybody using this Class?
Here is my problem
<CODE>
CLLocation *loc1 = [[CLLocation alloc] initWithLatitude:+29.640426 longitude:-090.599039]; //70301
CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:+38.637002 longitude:-090.650024]; //63005
double distance = [loc1 getDistanceFrom: loc2] / 1000;
NSLog(@"Distance between CoreLoc 70301 & 63005 = %g", distance);
</CODE>
Distance = 999.756
This returns a different value than google maps.
from: Chesterfield, MO 63005 to: THIBODAUX,LA - Google Maps
All in Kms. Is there a way to increase the acccuracy?
Thanks