码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 百度地图 轨迹记录 道路贴合

时间:2015-03-07 20:03:50      阅读:3519      评论:0      收藏:0      [点我收藏+]

标签:ios   百度地图   连线   

最近在做一个小的demo,试一下轨迹记录。

记录轨迹需要不停的获取位置记录到数据库。

在画折现的时候会在道路拐角处直接连线,不会与道路贴合,在这说一下我的解决方案。

我调用了百度地图的路径规划api。这样就能实现路径贴合功能了。

在此附上dome:点击打开链接

强调:这个dome是真机上运行,在模拟器上会报错。下载的时候注意一下。

由于各种原因图片是用手机拍的。

上张图看看:

技术分享


核心代码:

调用驾车线路规划,规划出从这点到那点的线路然后画出路线,生成的线路在下面函数中获得。

- (void)onGetDrivingRouteResult:(BMKRouteSearch *)searcher result:(BMKDrivingRouteResult *)result errorCode:(BMKSearchErrorCode)error
上面这是代理方法。

BMKPlanNode *startNode = [[BMKPlanNode alloc]init];
    CLLocationCoordinate2D startCoordinate;
    startCoordinate.latitude =36.727558;
    startCoordinate.longitude =119.185956;
    startNode.pt = startCoordinate;
    BMKPlanNode *endNode = [[BMKPlanNode alloc]init];
    CLLocationCoordinate2D endCoordnate;
    endCoordnate.latitude =36.827558;
    endCoordnate.longitude =119.385956;
    endNode.pt = endCoordnate;
    BMKDrivingRoutePlanOption * drivingRoutePlanOption = [[BMKDrivingRoutePlanOption alloc]init];
    drivingRoutePlanOption.from = startNode;
    drivingRoutePlanOption.to = endNode;
    if ([_searcher drivingSearch:drivingRoutePlanOption]) {
        NSLog(@"路线查找成功");
    }

- (void)onGetDrivingRouteResult:(BMKRouteSearch *)searcher result:(BMKDrivingRouteResult *)result errorCode:(BMKSearchErrorCode)error
{
    BMKDrivingRouteLine *plan = (BMKDrivingRouteLine *)[result.routes objectAtIndex:0];
    int size = (int)[plan.steps count];
    int pointCount = 0;
    for (int i = 0; i< size; i++) {
        BMKDrivingStep *step = [plan.steps objectAtIndex:i];
        pointCount += step.pointsCount;
    }
    BMKMapPoint *points = new BMKMapPoint[pointCount];
    int k = 0;
    for (int i = 0; i< size; i++) {
        BMKDrivingStep *step = [plan.steps objectAtIndex:i];
        for (int j= 0; j<step.pointsCount; j++) {
            points[k].x = step.points[j].x;
            points[k].y = step.points[j].y;
            k++;
        }
    }
    NSLog(@"点的个数:(%d)",k);
    BMKPolyline *polyLine = [BMKPolyline polylineWithPoints:points count:pointCount];
    [_mapView addOverlay:polyLine];
}
在上面方法中我们从返回的线路中 获取该线路的路段,再从路段中获取到路段中的点,最后对这些点进行画线。

iOS 百度地图 轨迹记录 道路贴合

标签:ios   百度地图   连线   

原文地址:http://blog.csdn.net/u010123208/article/details/44118343

(3)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!