ios 高德地图运动轨迹绘制、运动距离计算

记录:项目开发之人员轨迹绘制

配置:需要倒入高德地图sdk,因为是实时获取用户位置信息需要在项目的Background Modes中勾选location updates


在项目info里面添加Privacy - Location Always Usage Description、Privacy - Location Always and When In Use Usage Description配置隐私权协议说明。

持续定位开启审核被拒事项:在审核的时候开启持续定位app可能会被拒,所以在配置隐私权协议的时候要描述你的定位在哪个功能用到,用来干什么说明清楚,然后在appstoreconnect里面描述中把开启持续定位的消耗说明一下,用户在可以看到这一块的描述,我是这么描述的【注意:本应用在使用巡查中需在后台持续进行用户信息定位,这可能使您的电池过快被消耗,在后台继续使用持续定位功能也会大大降低电池寿命,建议您在巡查的时候使用持续定位功能,巡查结束后本应用会自动关闭持续定位功能。】,防止被拒的发生最好是在附件里添加一个演示的视频。

准备好后开始代码模块

自定义MapLocationManager管理的类遵守AMapLocationManagerDelegate代理


实现AMapLocationManagerDelegate代理方法- (void)amapLocationManager:(AMapLocationManager *)manager didUpdateLocation:(CLLocation *)location reGeocode:(AMapLocationReGeocode *)reGeocode;定位数据回调,在方法里实现数据的整理和距离的计算,具体如下

- (void)amapLocationManager:(AMapLocationManager*)managerdidUpdateLocation:(CLLocation*)locationreGeocode:(AMapLocationReGeocode*)reGeocode{

    self.distance = KUser.run_distance.integerValue;

    NSString*state =@"";

//因为做了开始、暂停、继续、结束的功能,使用对不同的状态进行了处理,其实这一块有些多余,因为在暂停和结束的时候已经调用了stopUpdatingLocation的方法,state的赋值是我用来区分不同的轨迹颜色用的标识,暂停的时候我会绘制黄色的轨迹路线,开始或者继续的状态下会绘制蓝色的轨迹路线

    if (kStringIsEmpty(KUser.run_state)) {//未开始或者数据已结束上传

        return;

    }else{

        if(KUser.run_state.integerValue==1||KUser.run_state.integerValue==3) {//开始、继续

            state =@"1";

        }else if(KUser.run_state.integerValue==2) {//暂停

            state =@"2";

            return;

        }else{

            return;

        }

    }

//模型里面是经纬度、时间,时间是用来计算运动时间的

    YJRunLocationModel *locationModel = [[YJRunLocationModel alloc]init];

    locationModel.location= location.coordinate;

    locationModel.time= [NSDate date];

    NSDictionary*current_dic =@{

        @"longitude":[NSString stringWithFormat:@"%f",location.coordinate.longitude],

        @"latitude":[NSString stringWithFormat:@"%f",location.coordinate.latitude],

        @"time":locationModel.time,

        @"state":state,//轨迹状态,区分绘制轨迹路线的颜色标识

    };

    if (kArrayIsEmpty([KUser getfectArray])) {

        NSDictionary*dic =@{

            @"longitude":[NSString stringWithFormat:@"%f",location.coordinate.longitude],

            @"latitude":[NSString stringWithFormat:@"%f",location.coordinate.latitude],

            @"time":locationModel.time,

            @"state":state,

        };

        [KUser saveperfectArrayWith_obj:dic];//数据持久化,加入本地数组

    }

    _locationNumber++;//这个_locationNumber是用来计算经纬度之间的距离也就是行驶距离,下面有判断_locationNumber大于1才会计算两个经纬度之间的距离

    if (_locationNumber > 1) {

        NSDictionary*last_dic = [KUser getfectArray].lastObject;

        [self distanceWithLocation:current_dic andLastButOneModel:last_dic];

    }

}

//计算经纬度距离

-(void)distanceWithLocation:(NSDictionary *)current_dic andLastButOneModel:(NSDictionary *)last_dic {

    CLLocationCoordinate2D current_location = CLLocationCoordinate2DMake([current_dic[@"latitude"]doubleValue], [current_dic[@"longitude"]doubleValue]);

    MAMapPoint point1 =MAMapPointForCoordinate(current_location);

    CLLocationCoordinate2D last_location =CLLocationCoordinate2DMake([last_dic[@"latitude"]doubleValue], [last_dic[@"longitude"]doubleValue]);

    MAMapPoint point2 =MAMapPointForCoordinate(last_location);

    //2.计算距离

    CLLocationDistance newdistance =MAMetersBetweenMapPoints(point1,point2);

    //估算两者之间的时间差,单位 秒

    NSTimeInterval secondsBetweenDates= [current_dic[@"time"]timeIntervalSinceDate:last_dic[@"time"]];

    //maxSpeed人的最高时速和运动时速比较,我做的操作是超出了人类的极限就不把当前的经纬度坐标加到本地数组里

    if((float)newdistance/secondsBetweenDates <=self.maxSpeed) {

        NSDictionary*dic =@{

            @"longitude":current_dic[@"longitude"],

            @"latitude":current_dic[@"latitude"],

            @"time":current_dic[@"time"],

            @"state":current_dic[@"state"],

        };

        [KUser saveperfectArrayWith_obj:dic];

        if([dic[@"state"]integerValue]==1) {//开始进行中才算距离,暂停不需要计算距离

        }

        self.distance=self.distance+ newdistance;

    KUser.run_distance = [NSString stringWithFormat:@"%ld",(long)self.distance];

        NSString*text = [NSStringstringWithFormat:@"%ld",(long)self.distance];

        KUser.run_distance= text;

        if (self.bk_drawRunLineActionBlock) {

            self.bk_drawRunLineActionBlock(self.distance);

        }

    }

}

工具类准备完毕后,下面是地图轨迹的绘制代码

首先遵守MAMapViewDelegate方法

#pragma mark- 懒加载

-(MAMapView *)mapView {

    if(_mapView==nil) {

        _mapView = [[MAMapView alloc] initWithFrame:self.view.bounds];

        _mapView.desiredAccuracy = kCLLocationAccuracyBest;

        _mapView.distanceFilter = 1.0f;

        _mapView.showsUserLocation = YES;

        _mapView.userTrackingMode = MAUserTrackingModeFollow;//地图跟着位置移动

        _mapView.zoomLevel=16;

        _mapView.maxZoomLevel=18;

        _mapView.showsScale=NO;//不显示比例尺

        _mapView.showsCompass=NO;//不显示罗盘

        _mapView.delegate  =self;

        MAUserLocationRepresentation *r = [[MAUserLocationRepresentation alloc] init];

        r.showsAccuracyRing = NO;///精度圈是否显示,默认YES

        r.showsHeadingIndicator = normal;

        [_mapView updateUserLocationRepresentation:r];

    }

    return _mapView;

}

//绘制折线样式

- (MAOverlayRenderer *)mapView:(MAMapView *)mapView rendererForOverlay:(id <MAOverlay>)overlay {

    if([overlay isKindOfClass:[MAMultiPolyline class]]) {

//        MAPolylineRenderer *polylineRenderer = [[MAPolylineRenderer alloc] initWithPolyline:overlay];

//        polylineRenderer.strokeColor = self.lineColor;

//        polylineRenderer.lineWidth = self.lineWidth;

//        return polylineRenderer;

        MAMultiTexturePolylineRenderer * polylineRenderer = [[MAMultiTexturePolylineRenderer alloc] initWithMultiPolyline:overlay];

        polylineRenderer.lineWidth=16;

//drawLineColors每个坐标点的颜色数据,我这里用的是图片所以用到的是strokeTextureImages属性

        polylineRenderer.strokeTextureImages=self.drawLineColors;

        return polylineRenderer;

    }

    return nil;

}

//绘制开始位置大头针

- (void)drawStartRunPointAction:(YJRunLocationModel *)runModel {

    if (_mapView.userLocation.location != nil) {//

    }

    MAPointAnnotation *pointAnnotation = [[MAPointAnnotation alloc] init];

    pointAnnotation.coordinate= runModel.location;

    [_mapView addAnnotation:pointAnnotation];

}

// 定义大头针样式

-(MAAnnotationView *)mapView:(MAMapView *)mapView viewForAnnotation:(id <MAAnnotation>)annotation {

    if([annotation isKindOfClass:[MAPointAnnotation class]]){

        MAAnnotationView*annotationView = (MAAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:@"startLocation"];

        if(annotationView ==nil) {

            annotationView = [[MAAnnotationView alloc]initWithAnnotation:annotation  reuseIdentifier:@"startLocation"];

        }

        annotationView.image=THEME_IMAGE(@"r_run_star");//

        annotationView.centerOffset=CGPointMake(0,0);

        returnannotationView;

    }else{

    }

    return nil;

}

//接下是在地图上绘制轨迹路线的方法,这个方法是在位置信息发生改变的时候回调中使用

- (void)drawRunLineAction {

    YJRunLocationModel *endLocation = [YJRunLocationModel modelWithJSON:[KUser getfectArray][0]];

    endLocation.location=CLLocationCoordinate2DMake(endLocation.latitude, endLocation.longitude);

    NSMutableArray *arr = [NSMutableArray array];

    for(inti =0; i < [KUsergetfectArray].count; i++) {

        YJRunLocationModel *newlocation = [YJRunLocationModel modelWithJSON:[KUser getfectArray][i]];

        newlocation.location=CLLocationCoordinate2DMake(newlocation.latitude, newlocation.longitude);

        MAMapPointpoint1 =MAMapPointForCoordinate(newlocation.location);

        MAMapPointpoint2 =MAMapPointForCoordinate(endLocation.location);

        //2.计算距离

        CLLocationDistancenewDistance =MAMetersBetweenMapPoints(point1,point2);

        endLocation = newlocation;

        [arr addObject:newlocation];

    }

    NSMutableArray*drawStyleIndexes = [NSMutableArr ayarray];

    self.drawLineColors = [NSMutableArray array];

    CLLocationCoordinate2D commonPolylineCoords[arr.count];

    for(inti =0; i < arr.count; i++) {

        YJRunLocationModel*locationModel = arr[i];

        commonPolylineCoords[i] = locationModel.location;

        NSDictionary*dic = [KUser getfectArray][i];

        [drawStyleIndexes addObject:@(i)];

        if([dic[@"state"]integerValue]==2) {

            UIImage*yellow =THEME_IMAGE(@"custtexture_yellow");

            [self.drawLineColors addObject:yellow];

        }else if([dic[@"state"]integerValue]==1) {

            UIImage*blue =THEME_IMAGE(@"custtexture_blue");

            [self.drawLineColors addObject:blue];

        }

    }

    [self.mapView removeOverlay:self.polyline];

    self.polyline= [MAMultiPolyline polylineWithCoordinates:commonPolylineCoords count:arr.count drawStyleIndexes:drawStyleIndexes];

    [self.mapView addOverlay:self.polyline];

}

end 🔚

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

推荐阅读更多精彩内容