how to show markers only in gmscircle region otherwise hide in ios

…衆ロ難τιáo~ 提交于 2019-12-04 21:19:41
user3475132

You can use following simple idea for it.

-(BOOL) checkMarker:(CLLocation*)locB

{
CLLocation *locA = [[CLLocation alloc]
                    initWithLatitude:24.590095
                    longitude:73.698256];

CLLocationDistance distance = [locA distanceFromLocation:locB];
NSLog(@"%f",distance);

if(distance <= RADIUS)
{
    NSLog(@"You are in Circle ");
    return true;
}
else
{
    NSLog(@"You are not in circle");
    return false;
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!