iOS 地图开发(MapKit)(二)

相关类的介绍:
MKAnnotation(大头针协议)
大头针数据类(自定义的大头针需要遵守大头针协议)
MKPointAnnotation
MKUserLocation
大头针展示类
MKPinAnnotationView<pre>//大头针的颜色
@property (NS_NONATOMIC_IOSONLY, strong, null_resettable) UIColor *pinTintColor NS_AVAILABLE(10_11, 9_0) UI_APPEARANCE_SELECTOR;
//设置添加时是否显示降落动画
@property (nonatomic) BOOL animatesDrop;</pre>MKAnnotationView<pre>
//设置图片
@property (nonatomic, strong, nullable) UIImage *image;
//大头针中心位置的偏移量
@property (nonatomic) CGPoint centerOffset;
//弹出试图的偏移量
@property (nonatomic) CGPoint calloutOffset;
//是否弹出试图(默认是NO)
@property (nonatomic) BOOL canShowCallout;
//弹出视图的左视图
@property (strong, nonatomic, nullable) UIView *leftCalloutAccessoryView;
//弹出视图的右视图
@property (strong, nonatomic, nullable) UIView *rightCalloutAccessoryView;
//是否能拖拽
@property (nonatomic, getter=isDraggable) BOOL draggable NS_AVAILABLE(10_9, 4_0) __TVOS_PROHIBITED;</pre>MKPlacemark(地标)
MKMapItem
<pre>
//导航
//1.可以将需要导航的位置让系统的地图App进行导航
//2.发送网络请求到公司服务器获取导航数据,然后自己手动绘制导航
//3.利用三方SDK实现导航
//初始位置
MKMapItem *myLocation = [MKMapItem mapItemForCurrentLocation];
//目的位置
CLLocationCoordinate2D toLocationCoor = CLLocationCoordinate2DMake(40, 117);
MKPlacemark *placemack = [[MKPlacemark alloc] initWithCoordinate:toLocationCoor addressDictionary:nil];
MKMapItem *toLocation = [[MKMapItem alloc] initWithPlacemark:placemack];
toLocation.name = @"目的地";

    NSDictionary *launchDic = @{
                                //设置导航模式参数
                                MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving,
                                //设置地图类型
                                MKLaunchOptionsMapTypeKey:@(MKMapTypeStandard),
                                //设置是否显示交通
                                MKLaunchOptionsShowsTrafficKey:@(YES)
                                };
    [MKMapItem openMapsWithItems:@[myLocation,toLocation] launchOptions:launchDic];</pre>MKMapCamera(地图街景)

MKMapSnapshotter(地图截图)
<pre>
//截图附加选项
MKMapSnapshotOptions *options = [[MKMapSnapshotOptions alloc] init];
//设置截图区域
options.region = _mapView.region;
options.size = _mapView.frame.size;
//设置截图后的图片比例(默认是屏幕比例)
options.scale = [[UIScreen mainScreen] scale];

    MKMapSnapshotter *snapshotter = [[MKMapSnapshotter alloc] initWithOptions:options];
    [snapshotter startWithCompletionHandler:^(MKMapSnapshot * _Nullable snapshot, NSError * _Nullable error) {
        NSLog(@"截图结束");
        if (error) {
            NSLog(@"截图错误 : %@",[error description]);
        }
        else {
            //图片保存在相册
            UIImageWriteToSavedPhotosAlbum(snapshot.image, self, @selector(image:didFinishSavingWithError:contextInfo:), (__bridge void *)self);
        }
    }];</pre>MKDirections(获取实际路线信息)

<pre>
/* MKDirectionsResponse
source:开始位置
destination:结束位置
routes:路线信息
MKRoute
name:路的名称
advisoryNotices:注意警告信息
distance:路线长度(实际物理距离,单位为m)
polyline:路线对应的在地图上的几何路线(由很多点组成,可绘制在地图上)
steps:多个行走步骤组成的数组
MKRouteStep
instructions:步骤说明
transportType:通过方式(驾车,步行)
polyline:路线对应的在地图上的几何线路(由很多点组成,可绘制在地图上)
注意:
MKRoute是一整条长路;MKRouteStep是这条长路中的每一截;
*/
//创建请求
//设置开始地标
MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
request.source = [MKMapItem mapItemForCurrentLocation];

    //设置结束地标
    MKPlacemark *endPlacemark = [[MKPlacemark alloc] initWithCoordinate:CLLocationCoordinate2DMake(40, 117) addressDictionary:nil];
    MKMapItem *endMapItem = [[MKMapItem alloc] initWithPlacemark:endPlacemark];
    endMapItem.name = @"目的地";
    request.destination = endMapItem;
    
    //根据请求,获取实际路线信息
    MKDirections *directions = [[MKDirections alloc] initWithRequest:request];
    [directions calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {
        [response.routes enumerateObjectsUsingBlock:^(MKRoute * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            NSLog(@"%@-- %f",obj.name,obj.distance);//实际路线距离
        
            [obj.steps enumerateObjectsUsingBlock:^(MKRouteStep * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
                NSLog(@"%@",obj.instructions);
            }];
        }];
    }];

</pre>覆盖物 MKPolyline(折线),MKCircle(圆形),MKPolygon(边形)
<pre>#if 1
CLLocationCoordinate2D coor;
coor = malloc(sizeof(CLLocationCoordinate2D)
5);
for (int i = 0; i < 5; i++) {
// CLLocationCoordinate2D po = CLLocationCoordinate2DMake(33.23+i0.01, 113.112);
CLLocationCoordinate2D po = CLLocationCoordinate2DMake(_bjCoor.latitude+i
0.01, _bjCoor.longitude);
coor[i] = po;
}

    //创建一个折线对象
    MKPolyline *line = [MKPolyline polylineWithCoordinates:coor count:5];
    [_mapView addOverlay:line];

endif

if 0

    MKCircle *circle = [MKCircle circleWithCenterCoordinate:_bjCoor radius:500];
    [_mapView addOverlay:circle];

endif

if 0

    CLLocationCoordinate2D *coor;
    coor = malloc(sizeof(CLLocationCoordinate2D)*6);
    for (int i = 0; i < 5; i++) {
        CLLocationCoordinate2D po = CLLocationCoordinate2DMake(_bjCoor.latitude+i*0.01, _bjCoor.longitude+((i/2==0)?0.01:-0.01));
        coor[i] = po;
    }

// coor[5] = CLLocationCoordinate2DMake(33.23, 113.112);
coor[5] = _bjCoor;
MKPolygon *gon = [MKPolygon polygonWithCoordinates:coor count:6];
[_mapView addOverlay:gon];

endif

pragma mark MKMapDelegate

//覆盖物绘制的代理

  • (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay
    {

if 1

//折线覆盖物提供类
MKPolylineRenderer *render = [[MKPolylineRenderer alloc] initWithPolyline:overlay];
//设置线宽
render.lineWidth = 3;
//设置颜色
render.strokeColor = [UIColor redColor];
return render;

endif

if 0

MKCircleRenderer *render = [[MKCircleRenderer alloc] initWithCircle:overlay];

// MKCircleRenderer *render = [[MKCircleRenderer alloc] initWithOverlay:overlay];
render.lineWidth = 3;
//填充颜色
render.fillColor = [UIColor greenColor];
render.strokeColor = [UIColor redColor];
return render;

endif

if 0

MKPolygonRenderer *render = [[MKPolygonRenderer alloc] initWithPolygon:overlay];
render.lineWidth = 3;
render.strokeColor = [UIColor redColor];
return render;

endif

}</pre>MKDirections+MKPolyline
<pre> CLGeocoder *geocoder = [CLGeocoder new];
[geocoder geocodeAddressString:@"天津" completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {
if (placemarks.count == 0 || error) {
return ;
}
CLPlacemark *pm = placemarks.lastObject;
MKPlacemark *mkPm = [[MKPlacemark alloc] initWithPlacemark:pm];
//起点
MKMapItem *sourceItem = [MKMapItem mapItemForCurrentLocation];
//终点
MKMapItem *destinationItem = [[MKMapItem alloc] initWithPlacemark:mkPm];

        //发请求到苹果服务器请求数据
        MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
        request.source = sourceItem;
        request.destination = destinationItem;
        
        //创建方法对象
        MKDirections *direction = [[MKDirections alloc] initWithRequest:request];
        [direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {
            if (response.routes.count == 0 || error) {
                NSLog(@"没有找到对应的路线");
                return ;
            }
            //从返回的response中获取一组MKRoute路线对象
            for (MKRoute *route in response.routes) {
                //NSLog(@"%@",route.name);
                //从路线对象中获取折线对象
                MKPolyline *polyline = route.polyline;
                //将折线对象通过渲染方式添加到地图上,注意在渲染的代理方法中为折线设置相关属性
                [_mapView addOverlay:polyline];
            }
        }]; 
    }];
  • (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay
    {
    //1.创建一个折线渲染物对象(MKOverlayRenderer的子类)
    MKPolylineRenderer *polyline = [[MKPolylineRenderer alloc] initWithOverlay:overlay];
    //2.设置线条颜色,必须设置。
    // polyline.fillColor = [UIColor redColor];
    polyline.strokeColor = [UIColor blueColor];
    //3.设置线条宽度
    polyline.lineWidth = 10;
    return polyline;
    }</pre>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容