我正在开发一个具有类似于LOVOO应用程序的RADAR功能的应用程序。我没有使用CoreLocation和其他基于位置的框架的经验。

如果您能建议我如何实现这一目标,将不胜感激。
我应该使用什么框架,以及如何继续进行。

尽管在此上面已经存在相同的问题,但我的问题与Radar View like LOVOO相同,但对我没有用,这就是为什么我再次询问它。

到目前为止,我尝试过的是,我要绘制点的经度和经度值,并且已经计算出中心点(我的位置)与其他点之间的角度和距离

- (float)angletoCoordinate:(CLLocationCoordinate2D)second {

//myCurrentLocation is origin

//second is point

float lat1 = DegreesToRadians(myCurrentLocation.coordinate.latitude);
float lon1 = DegreesToRadians(myCurrentLocation.coordinate.longitude);

float lat2 = DegreesToRadians(second.latitude);
float lon2 = DegreesToRadians(second.longitude);

float dLon = lon2 - lon1;

float y = sin(dLon) * cos(lat2);
float x = cos(lat1) * sin(lat2) - sin(lat1) * cos(lat2) * cos(dLon);
float radiansBearing = atan2(y, x);
if(radiansBearing < 0.0)
{
    radiansBearing += 2*M_PI;
}

return radiansBearing;
}


-(float)calculateXPointWithLoc:(ARGeoLocation *)loc andDelta:(float)delta{
float angle = radiansToDegrees(delta);
float dpx = (([myCurrentLocation distanceFromLocation:loc.geoLocation])/1000);

if(0<=angle<=90)
    return viewRadar.center.x + sin(angle)*dpx ;
else if(90<angle<=180)
    return viewRadar.center.x + cos(angle-90)*dpx  ;
else if(180<angle<=270)
    return viewRadar.center.x - cos(270-angle)*dpx ;
else if(270<angle<360)
    return viewRadar.center.x - sin(360-angle)*dpx ;

return 0;
}

-(float)calculateYPointWithLoc:(ARGeoLocation *)loc andDelta:(float)delta{
float angle = radiansToDegrees(delta);

float dpx = (([myCurrentLocation distanceFromLocation:loc.geoLocation])/1000);



if(0<=angle<=90)
    return viewRadar.center.y - cos(angle)*dpx ;
else if(90<angle<=180)
    return viewRadar.center.y + sin(angle-90)*dpx ;
else if(180<angle<=270)
    return viewRadar.center.y + sin(270-angle)*dpx ;
else if(270<angle<360)
    return viewRadar.center.y - cos(360-angle)*dpx ;

return 0;
}

接着
    int i = 0;
    for(ARGeoLocation *loc in coordinates){

    deltaAz = [self angletoCoordinate:loc.geoLocation.coordinate];
    x = [self calculateXPointWithLoc:loc andDelta:deltaAz];
    y = [self calculateYPointWithLoc:loc andDelta:deltaAz];

    [[plots objectAtIndex:i] setFrame:CGRectMake(x, y, DIAMETER_PLOT, DIAMETER_PLOT)];
    i++;
    }

我不确定x和y是否正确,以及它们是否正确,然后如何通过更改滑块值来更改这些值。

最佳答案

我认为这里的关键字是 Geofencing

地理围栏是设备进入或离开某个区域时自动触发的 Action 。对于您的情况,您的操作是显示那些输入雷达区域的用户的个人资料。

基本上,您需要计算一个圆形区域(给定半径)并显示该区域内的所有其他点。

我曾经发现本教程可以自己教如何做:
http://www.raywenderlich.com/95014/geofencing-ios-swift

希望对您有所帮助!

10-08 07:42