我以为我有它工作,但似乎没有.
我有’newLocation’作为你所在的位置,我认为问题是我需要能够分离newLocation的long和lat数据.
到目前为止,我试过这个:
Nsstring *latitudeVar = [[Nsstring alloc] initWithFormat:@"%g°",newLocation.coordinate.latitude];Nsstring *longitudeVar = [[Nsstring alloc] initWithFormat:@"%g°",newLocation.coordinate.longitude];
GPS位置列表的示例:
location:(CLLocation*)newLocation;CLLocationCoordinate2D bonusOne; bonusOne.latitude = 37.331689;bonusOne.longitude = -122.030731;
然后
if (latitudeVar == bonusOne.latitude && longitudeVar == bonusOne.longitude) { UIAlertVIEw *alert = [[UIAlertVIEw alloc] initWithTitle:@"infinite loop firday" message:@"infloop" delegate:nil cancelbuttonTitle:@"Stinky" otherbuttonTitles:nil ]; [alert show]; [alert release];}
这会产生一个错误’无效 *** 作数到二进制==有strut Nsstring和CLlocationdegrees’
有什么想法吗?
解决方法 通常,您应该小心直接比较浮点数.由于它们的定义方式,内部值可能与初始化它们不完全相同,这意味着它们很少相同.相反,您应该检查它们之间的差异是否低于某个阈值if(fabs(latitude1 - latitude2) <= 0.000001)...
另一种选择可以是通过计算距离来检查人与所需位置的距离.这也可以考虑到GPS的坐标不完全正确的事实,但即使在良好的条件下也可能相差10米:
CLLocation *loc1 = [[CLLocation alloc] initWithLatitude:lat1 longitude:lon1];double distance = [loc1 getdistanceFrom:position2];if(distance <= 10)...
克劳斯
总结以上是内存溢出为你收集整理的Objective C / iPhone比较2个CLLocations / GPS坐标全部内容,希望文章能够帮你解决Objective C / iPhone比较2个CLLocations / GPS坐标所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)