根据百度地图实现附近资源的距离排序

先上效果图(数据是造的,UI上四个items就经纬度不一样):

根据当前位置从近到远排序

其实这个很简单,额.....但是还是觉得总结还是进步的关键。

先说思路:先根据接口返回的数据(经纬度)、根据百度地图的当前定位,然后计算出每条数据到到当前点的距离(精确度最好要高,)。 这里我使用数组arrayKeys保存所有的距离。然后创建一个字典dataDic把当前距离distance作为key,values为key对应下的数据model。然后我们将数据arrayKeys进行排序。这样只要arrayKeys排序了,对应的model其实也相当于排序了。

贴出关键代码:

    NSDictionary *params = @{@"networkProvince":@"安徽",@"pageIndex":@(1),@"pageSize":@(10)};
    [AFNetworkTool GET:queryNetworkListUrl parameters:params showHUD:YES success:^(id returnData) {
    
     NetworkListModel *model = [NetworkListModel mj_objectWithKeyValues:returnData];
    
      self.dataArray = (NSMutableArray *)model.data.data;
    
       //已无更多数据
       if (self.dataArray.count==0) {
       //停止上拉刷新
        [self.tableview.mj_footer endRefreshingWithNoMoreData];
       
        return;
    }
    
    //排序
    if (self.isLocationOK) {
        
        //获取所有key的集合
        NSMutableArray *arrayKeys = [NSMutableArray array];
        //key:距离  values:模型
        NSMutableDictionary *dataDic = [NSMutableDictionary dictionary];
        
        for (int i = 0; i < self.dataArray.count; i++) {
            
            NetworkListDetail *dictModel = self.dataArray[i];
            //根据用户指定的两个坐标点,计算这两个点的实际地理距离。核心代码如下:
            BMKMapPoint point1 = BMKMapPointForCoordinate(self.locationCoordinate2D);
            BMKMapPoint point2 = BMKMapPointForCoordinate(CLLocationCoordinate2DMake([dictModel.network_latitude doubleValue],[dictModel.network_longitude doubleValue]));
            CLLocationDistance distance = BMKMetersBetweenMapPoints(point1,point2);
            
            YLLog(@"self.arrayRecivedKeys ---distance %fd",distance);
            
            [arrayKeys addObject:[NSNumber numberWithDouble:distance]];
            [dataDic setObject:dictModel forKey:[NSNumber numberWithDouble:distance]];
            
            self.dictRecivedValues = dataDic;
        }
        
        //排序arrayKeys
        NSArray *sortedArray = [arrayKeys sortedArrayUsingComparator:^NSComparisonResult(NSNumber *obj1, NSNumber *obj2) {
            if ([obj1 floatValue] < [obj2 floatValue]) {
                return NSOrderedAscending;
            } else {
                return NSOrderedDescending;
            }
        }];
        
        self.arrayAllKeys = sortedArray;
        
        YLLog(@"arrayAllKeys --- %@",self.arrayAllKeys);
    }
    
    //总页数
    self.totalPage= [model.data.totalPageNum integerValue];
    
    if (self.dataArray) {
        //记录当前页
        self.currentPage = 1;
    }
    //重新载入数据
    [self.tableview reloadData];
    //停止下拉刷新
    [self.tableview.mj_header endRefreshing];
    
} failure:^(NSError *error) {
    
    //停止下拉刷新
    [self.tableview.mj_header endRefreshing];
}];

地图代理方法里:

  //处理位置坐标更新
  - (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
  {
          YLLog(@"didUpdateUserLocation lat %f,long %f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);

        //发起反向地理编码检索
        _searcher =[[BMKGeoCodeSearch alloc]init];
        _searcher.delegate = self;
        CLLocationCoordinate2D pt = (CLLocationCoordinate2D){userLocation.location.coordinate.latitude, userLocation.location.coordinate.longitude};
        self.locationCoordinate2D = pt;

        BMKReverseGeoCodeOption *reverseGeoCodeSearchOption = [[
        BMKReverseGeoCodeOption alloc]init];
        reverseGeoCodeSearchOption.reverseGeoPoint = pt;
        BOOL flag = [_searcher reverseGeoCode:reverseGeoCodeSearchOption];

        if(flag)
      {
            YLLog(@"反geo检索发送成功");
             self.isLocationOK = YES;
              [self setupRefresh:self.tableview];
      }
       else
      {
              YLLog(@"反geo检索发送失败");
              self.isLocationOK = NO;
              [self setupRefresh:self.tableview];
      }

    [_locService stopUserLocationService];
}

  //接收反向地理编码结果
  -(void)onGetReverseGeoCodeResult:(BMKGeoCodeSearch *)searcher result:            (BMKReverseGeoCodeResult *)result errorCode:(BMKSearchErrorCode)error{

    if (error == BMK_SEARCH_NO_ERROR) {

        _mapLb.text = [NSString stringWithFormat:@"当前位置:%@",result.address];
         YLLog(@"%@",result.address);
         YLLog(@"%@",result.addressDetail.province);
    }
    else {
  
        _mapLb.text = @"当前定位失败";
        YLLog(@"抱歉,未找到结果");
    }
  }

Tableview代理方法:

  #pragma mark -UITableViewDataSource
  - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

      return self.dataArray.count;
  }

  -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  {

      AfterServerCell *cell = [AfterServerCell afterServerCellWithTableView:tableView];

      cell.model = self.dictRecivedValues[self.arrayAllKeys[indexPath.row]];
  //    cell.model = self.dataArray[indexPath.row];
      cell.distance = self.arrayAllKeys[indexPath.row];

      return cell;
    }

好了就是这样了,= = 。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,552评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,666评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,519评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,180评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,205评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,344评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,781评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,449评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,635评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,467评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,515评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,217评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,775评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,851评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,084评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,637评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,204评论 2 341

推荐阅读更多精彩内容