iOS:OC--MKMapView实现地图导航

MKMapView
  • 首先,我们单击项目
  • 导入依赖库
导入库文件
  • 新建了类FL_Annotation, 继承自NSObject

FL_Annotation.h代码

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>//地图框架
//大头针标注模型, 在自定义的时候必须遵循MKAnnotation协议
@interface FL_Annotation : NSObject<MKAnnotation>

//遵循协议后,必须实现的三个属性
//经纬度
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;//为什么使用assign

//主标题
@property (nonatomic, copy) NSString* title;

//副标题
@property (nonatomic, copy) NSString *subtitle;

@end

ViewController.m

#import "ViewController.h"
//大头针标注模型
#import <MapKit/MapKit.h>
#import "FL_Annotation.h"

//使用地图,必须在工程中引入框架,而且,地图的使用都依赖定位服务
@interface ViewController ()<MKMapViewDelegate>

//地图属性
@property (nonatomic, strong) MKMapView *mapView;

//定位管理对象
@property (nonatomic, strong) CLLocationManager *locationManger;

//记录最后一次插入大头针的位置(待用...)
@property (nonatomic, assign) CGPoint lastPoint;

//地理编码对象
@property (nonatomic, strong) CLGeocoder *geocoder;

@end

@implementation ViewController
//懒加载
-(CLLocationManager *)locationManger {
    if (_locationManger == nil) {
        self.locationManger = [CLLocationManager new];
    }
    return _locationManger;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.mapView = [[MKMapView alloc]initWithFrame:self.view.frame];
    
    [self.view addSubview:self.mapView];
    
    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureAction:)];
    
    [self.mapView addGestureRecognizer:tapGesture];
    
    //1.在info.plist中配置允许定位设置
    //NSLocationWhenInUseUsageDiscription
    
    //2.查看手机定位服务是否开启
    if (![CLLocationManager locationServicesEnabled]) {
        NSLog(@"请在设置中打开定位服务");
        return;
    }
    
    //3.请求用户授权
    if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined) {
        //请求用户授权
        [self.locationManger requestWhenInUseAuthorization];
    }
    
    //4.重要,让地图显示当前用户的位置
    self.mapView.userTrackingMode = MKUserTrackingModeFollow;
    
    //设置代理对象
    self.mapView.delegate = self;
    
    //添加按钮
    [self addButton];
    
    
}

#pragma mark - 添加按钮
-(void)addButton
{
    UIButton *removeButton = [[UIButton alloc]initWithFrame:(CGRectMake(20, 40, 150, 42))];
    
    removeButton.tintColor = [UIColor blackColor];
    
    removeButton.backgroundColor = [UIColor lightGrayColor];
    
    [removeButton setTitle:@"移除坐标" forState:UIControlStateNormal];
    
    [removeButton addTarget:self action:@selector(removeButtonAction:) forControlEvents:(UIControlEventTouchUpInside)];
    
    [self.view addSubview:removeButton];
    
    
    UIButton *playLine = [[UIButton alloc]initWithFrame:(CGRectMake(249, 40, 150, 42))];
    
    playLine.tintColor = [UIColor blackColor];
    
    playLine.backgroundColor = [UIColor lightGrayColor];
    
    [playLine setTitle:@"规划路线" forState:UIControlStateNormal];
    
    [playLine addTarget:self action:@selector(playLineAction:) forControlEvents:(UIControlEventTouchUpInside)];
    
    [self.view addSubview:playLine];
    
}

#pragma mark - 轻拍手势,添加大头针
//轻拍地图,立马添加大头针.但是,添加大头针视图不需要我们来创建,我们只能添加大头针标注模型,标注模型相当于数据层(model)  大头针视图相当于View层(相当于cell)
-(void)tapGestureAction:(UITapGestureRecognizer *)sender
{
    //1.获取触摸点的位置
    CGPoint touchPoint = [sender locationInView:self.mapView];
    
    //2.判断触摸点,位置相同就不能再添加大头针
    if (self.lastPoint.x == touchPoint.x && self.lastPoint.y == touchPoint.y) {
        return;//触摸点重复
    }
    
    //3.获取触摸点x, y的值,并且转为经纬度
    CLLocationCoordinate2D coordinate = [self.mapView convertPoint:touchPoint toCoordinateFromView:self.mapView];
    
    //4.创建大头针标注模型(用来展示大头针所定是位置信息)
    FL_Annotation *annotation = [[FL_Annotation alloc] init];
    
    //给模型的属性赋值
    annotation.coordinate = coordinate;
    
    annotation.title = @"北京市";
    
    annotation.subtitle = @"昌平区回龙观";
    
    //添加大头针标注模型(用来展示大头针所定的位置上信息)
    [self.mapView addAnnotation:annotation];
    
    //记录当前点的位置,为下一次点击做准备
    self.lastPoint = touchPoint;
}

#pragma mark - 地图的代理方法
//这个方法就是地图控件根据标注模型信息创建大头针的方法
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    //判断大头针标注模型是否是自定义模型
    if ([annotation isKindOfClass:[FL_Annotation class]]) {
        //如果需要展示的模型确实是自定义模型
        //1.创建静态标识符
        static NSString *identifier = @"view";
        
        //2.去重用队列中取出可用的大头针对象
        MKPinAnnotationView *view = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
        
        //3.判断是否可用
        if (view == nil) {
            view = [[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:identifier];
        }
        
        //给大头针赋值
        view.annotation = annotation;
        
        //设置图片<需要赋的值>
        //MARK - 大头针有两种模式(父类:MKAnnotationView 子类:MKPinAnnotationView)
        //父类中的view,image 属性是有效的,在子类中无效, 代替大头针的图片
        view.image = [UIImage imageNamed:@"tab_01.jpg"];
        
        //MARK - 动画属性和大头针�颜色属性属于子类属性, 父类中不可用
        //大头针是否从天而降
        view.animatesDrop = YES;
        
        //可以设置大头针的颜色
        view.pinTintColor = [UIColor orangeColor];
        
        //设置弹出标注模型的弹出框
        view.canShowCallout = YES;
        
        //在弹出框中添加图片,比如:在左侧添加图片
        UIImageView *imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"tab_01.jpg"]];
        
        imageView.frame = CGRectMake(0, 0, 40, 40);
        
        view.leftCalloutAccessoryView = imageView;
        
        return view;
        
    }
    return nil;
}

#pragma mark - 移除大头针事件
-(void)removeButtonAction:(UIButton *)sender
{
    //我们不能移除大头针,我们只需要移除大头针标注模型即可
    [self.mapView removeAnnotations:self.mapView.annotations];
}
#pragma mark - 规划路线
- (void)playLineAction:(UIButton *)sender {
    
    [self drawLineBetweenBeginCity:@"北京" endCity:@"内蒙古"];
}
#pragma mark -- 封装方法
//懒加载---给地理编码对象开空间
- (CLGeocoder *)geocoder {
    if (_geocoder == nil) {
        self.geocoder = [[CLGeocoder alloc]init];
    }
    return _geocoder;
}
- (void)drawLineBetweenBeginCity:(NSString *)scourceCity endCity:(NSString *)destinationCity {
    //1.因为传入的城市名称是中文字符串.所以先进行地理编码.
    [self.geocoder geocodeAddressString:scourceCity completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
        //获取起点城市地标
        CLPlacemark *mark1 = [placemarks firstObject];
        //设置路线显示范围
        [self.mapView setRegion:MKCoordinateRegionMake(mark1.location.coordinate, MKCoordinateSpanMake(10.0, 10.0)) animated:YES];
        
        //2.获取目的城市的地标对象
        [self.geocoder geocodeAddressString:destinationCity completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
            //获取地标对象
            CLPlacemark *mark2 = [placemarks firstObject];
#pragma mark -- 获取了两个城市的地标对象后.开始添加路段模型.显示路线
            [self addLineFrom:mark1 to:mark2];
            
        }];
        
    }];
}

#pragma mark - 规划路线
- (void)addLineFrom:(CLPlacemark *)from to:(CLPlacemark *)to {
    //1.在起始和结束位置上插入两个大头针
    FL_Annotation *oneAnnotation = [[FL_Annotation alloc]init];
    oneAnnotation.coordinate = from.location.coordinate;
    FL_Annotation *twoAnnotation = [[FL_Annotation alloc]init];
    twoAnnotation.coordinate = to.location.coordinate;
    //添加在地图上
    [self.mapView addAnnotations:@[oneAnnotation, twoAnnotation]];
    //2.开始路线请求
    MKDirectionsRequest *request = [[MKDirectionsRequest alloc]init];
    //3.选择出行模式
    request.transportType = MKDirectionsTransportTypeAutomobile;//自驾
    //4.设置路线的起点
    MKPlacemark *sourcePlace = [[MKPlacemark alloc]initWithPlacemark:from];
    request.source = [[MKMapItem alloc]initWithPlacemark:sourcePlace];
    //5.设置路线的终点
    MKPlacemark *destinationPlace = [[MKPlacemark alloc]initWithPlacemark:to];
    request.destination = [[MKMapItem alloc]initWithPlacemark:destinationPlace];
    //6.根据请求对象获取路线对象
    MKDirections *direction = [[MKDirections alloc]initWithRequest:request];
    //7.计算路线(路线由一条条路段组成.而路段由一个个的轨迹点组成)
    [direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {
        NSLog(@"总共有%lu条路线组成", response.routes.count);
        //填充轨迹点模型.
        for (MKRoute *route in response.routes) {
            [self.mapView addOverlay:route.polyline];
        }
    }];
    
    //polyline 轨迹点模型.还有MKPolylineView 这个是轨迹点视图.他们的关系类似于(大头针和大头针标注模型的关系).我们不创建轨迹点视图.但是只要先添加了轨迹点模型到地图上.就会获取轨迹点视图进行展示
    //一旦轨迹点添加完毕.系统就会自动调用绘制地图上路线的代理方法.来展示路线
}

#pragma mark -- 绘制路线的代理方法
- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay {
    MKPolylineRenderer *renderer = [[MKPolylineRenderer alloc]initWithOverlay:overlay];
    //设置路线的颜色
    renderer.strokeColor = [UIColor redColor];
    return renderer;
    
}

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

推荐阅读更多精彩内容

  • 转至元数据结尾创建: 董潇伟,最新修改于: 十二月 23, 2016 转至元数据起始第一章:isa和Class一....
    40c0490e5268阅读 1,709评论 0 9
  • 1.OC里用到集合类是什么? 基本类型为:NSArray,NSSet以及NSDictionary 可变类型为:NS...
    轻皱眉头浅忧思阅读 1,371评论 0 3
  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,139评论 30 470
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,050评论 25 707
  • 许峻阅读 101评论 0 0