iOS Map 知道两个大头针如何距离

最近在做有关于地图的APP 需要用到知道两个坐标如何求两地的距离

方法有两种一种是CoreLocation 框架中自带求两地距离

-(BOOL)compareTowPlacesDistancewhetherOrNotLessTenMeter:(Annotation *)annotationA another:(Annotation *)anotationB
{
CLLocation  *destlocA=[[CLLocation  alloc]initWithLatitude:annotationA.coordinate.latitude longitude:annotationA.coordinate.longitude];


CLLocation *destlocB=[[CLLocation alloc]initWithLatitude:anotationB.coordinate.latitude longitude:anotationB.coordinate.longitude];
CLLocationDistance dist=[destlocA distanceFromLocation:destlocB];
 

NSLog(@"=========多少米%f",dist);
 if (dist<=10) {
    return YES;
} else{
    return NO;
}
}

这种方法我发现有个不好的地方会出现小错,!

如果传入的coordinate 为NULL值,返回的数值有可能就不会正确

so:

有一个更原始的方法 高中地理学过的

直接贴代码吧
#define PI 3.141592653
-(BOOL)compareTowPlacesDistancewhetherOrNotLessTenMeter:(Annotation )annotationA another:(Annotation )anotationB
{
double er = 6378137; // 6378700.0f;
//ave. radius = 6371.315 (someone said more accurate is 6366.707)
//equatorial radius = 6378.388
//nautical mile = 1.15078
double radlat1 = PI
annotationA.coordinate.latitude/180.0f;
double radlat2 = PI
anotationB.coordinate.latitude/180.0f;
//now long.
double radlong1 = PIannotationA.coordinate.longitude/180.0f;
double radlong2 = PI
anotationB.coordinate.longitude/180.0f;
if( radlat1 < 0 ) radlat1 = PI/2 + fabs(radlat1);// south
if( radlat1 > 0 ) radlat1 = PI/2 - fabs(radlat1);// north
if( radlong1 < 0 ) radlong1 = PI2 - fabs(radlong1);//west
if( radlat2 < 0 ) radlat2 = PI/2 + fabs(radlat2);// south
if( radlat2 > 0 ) radlat2 = PI/2 - fabs(radlat2);// north
if( radlong2 < 0 ) radlong2 = PI
2 - fabs(radlong2);// west
//spherical coordinates x=rcos(ag)sin(at), y=rsin(ag)sin(at), z=rcos(at)
//zero ag is up so reverse lat
double x1 = er * cos(radlong1) * sin(radlat1);
double y1 = er * sin(radlong1) * sin(radlat1);
double z1 = er * cos(radlat1);
double x2 = er * cos(radlong2) * sin(radlat2);
double y2 = er * sin(radlong2) * sin(radlat2);
double z2 = er * cos(radlat2);
double d = sqrt((x1-x2)(x1-x2)+(y1-y2)(y1-y2)+(z1-z2)(z1-z2));
//side, side, side, law of cosines and arccos
double theta = acos((er
er+erer-dd)/(2erer));
double dist = theta*er;
NSLog(@"=========多少米%f",dist);

if (dist<=10) {
    return YES;
} else{
    return NO;
}    

你可能感兴趣的:(iOS Map 知道两个大头针如何距离)