iOS 地圖開發(fā)(MapKit)(二)

相關(guān)類的介紹:
MKAnnotation(大頭針協(xié)議)
大頭針數(shù)據(jù)類(自定義的大頭針需要遵守大頭針協(xié)議)
MKPointAnnotation
MKUserLocation
大頭針展示類
MKPinAnnotationView<pre>//大頭針的顏色
@property (NS_NONATOMIC_IOSONLY, strong, null_resettable) UIColor *pinTintColor NS_AVAILABLE(10_11, 9_0) UI_APPEARANCE_SELECTOR;
//設(shè)置添加時是否顯示降落動畫
@property (nonatomic) BOOL animatesDrop;</pre>MKAnnotationView<pre>
//設(shè)置圖片
@property (nonatomic, strong, nullable) UIImage *image;
//大頭針中心位置的偏移量
@property (nonatomic) CGPoint centerOffset;
//彈出試圖的偏移量
@property (nonatomic) CGPoint calloutOffset;
//是否彈出試圖(默認(rèn)是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(地標(biāo))
MKMapItem
<pre>
//導(dǎo)航
//1.可以將需要導(dǎo)航的位置讓系統(tǒng)的地圖App進行導(dǎo)航
//2.發(fā)送網(wǎng)絡(luò)請求到公司服務(wù)器獲取導(dǎo)航數(shù)據(jù)嫌术,然后自己手動繪制導(dǎo)航
//3.利用三方SDK實現(xiàn)導(dǎo)航
//初始位置
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 = @{
                                //設(shè)置導(dǎo)航模式參數(shù)
                                MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving,
                                //設(shè)置地圖類型
                                MKLaunchOptionsMapTypeKey:@(MKMapTypeStandard),
                                //設(shè)置是否顯示交通
                                MKLaunchOptionsShowsTrafficKey:@(YES)
                                };
    [MKMapItem openMapsWithItems:@[myLocation,toLocation] launchOptions:launchDic];</pre>MKMapCamera(地圖街景)

MKMapSnapshotter(地圖截圖)
<pre>
//截圖附加選項
MKMapSnapshotOptions *options = [[MKMapSnapshotOptions alloc] init];
//設(shè)置截圖區(qū)域
options.region = _mapView.region;
options.size = _mapView.frame.size;
//設(shè)置截圖后的圖片比例(默認(rèn)是屏幕比例)
options.scale = [[UIScreen mainScreen] scale];

    MKMapSnapshotter *snapshotter = [[MKMapSnapshotter alloc] initWithOptions:options];
    [snapshotter startWithCompletionHandler:^(MKMapSnapshot * _Nullable snapshot, NSError * _Nullable error) {
        NSLog(@"截圖結(jié)束");
        if (error) {
            NSLog(@"截圖錯誤 : %@",[error description]);
        }
        else {
            //圖片保存在相冊
            UIImageWriteToSavedPhotosAlbum(snapshot.image, self, @selector(image:didFinishSavingWithError:contextInfo:), (__bridge void *)self);
        }
    }];</pre>MKDirections(獲取實際路線信息)

<pre>
/* MKDirectionsResponse
source:開始位置
destination:結(jié)束位置
routes:路線信息
MKRoute
name:路的名稱
advisoryNotices:注意警告信息
distance:路線長度(實際物理距離,單位為m)
polyline:路線對應(yīng)的在地圖上的幾何路線(由很多點組成噪生,可繪制在地圖上)
steps:多個行走步驟組成的數(shù)組
MKRouteStep
instructions:步驟說明
transportType:通過方式(駕車覆获,步行)
polyline:路線對應(yīng)的在地圖上的幾何線路(由很多點組成材鹦,可繪制在地圖上)
注意:
MKRoute是一整條長路汤踏;MKRouteStep是這條長路中的每一截葛圃;
*/
//創(chuàng)建請求
//設(shè)置開始地標(biāo)
MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
request.source = [MKMapItem mapItemForCurrentLocation];

    //設(shè)置結(jié)束地標(biāo)
    MKPlacemark *endPlacemark = [[MKPlacemark alloc] initWithCoordinate:CLLocationCoordinate2DMake(40, 117) addressDictionary:nil];
    MKMapItem *endMapItem = [[MKMapItem alloc] initWithPlacemark:endPlacemark];
    endMapItem.name = @"目的地";
    request.destination = endMapItem;
    
    //根據(jù)請求诬烹,獲取實際路線信息
    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;
}

    //創(chuàng)建一個折線對象
    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];
//設(shè)置線寬
render.lineWidth = 3;
//設(shè)置顏色
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];

        //發(fā)請求到蘋果服務(wù)器請求數(shù)據(jù)
        MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
        request.source = sourceItem;
        request.destination = destinationItem;
        
        //創(chuàng)建方法對象
        MKDirections *direction = [[MKDirections alloc] initWithRequest:request];
        [direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {
            if (response.routes.count == 0 || error) {
                NSLog(@"沒有找到對應(yīng)的路線");
                return ;
            }
            //從返回的response中獲取一組MKRoute路線對象
            for (MKRoute *route in response.routes) {
                //NSLog(@"%@",route.name);
                //從路線對象中獲取折線對象
                MKPolyline *polyline = route.polyline;
                //將折線對象通過渲染方式添加到地圖上型檀,注意在渲染的代理方法中為折線設(shè)置相關(guān)屬性
                [_mapView addOverlay:polyline];
            }
        }]; 
    }];
  • (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay
    {
    //1.創(chuàng)建一個折線渲染物對象(MKOverlayRenderer的子類)
    MKPolylineRenderer *polyline = [[MKPolylineRenderer alloc] initWithOverlay:overlay];
    //2.設(shè)置線條顏色冗尤,必須設(shè)置。
    // polyline.fillColor = [UIColor redColor];
    polyline.strokeColor = [UIColor blueColor];
    //3.設(shè)置線條寬度
    polyline.lineWidth = 10;
    return polyline;
    }</pre>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市裂七,隨后出現(xiàn)的幾起案子皆看,更是在濱河造成了極大的恐慌,老刑警劉巖背零,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件悬蔽,死亡現(xiàn)場離奇詭異,居然都是意外死亡捉兴,警方通過查閱死者的電腦和手機蝎困,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來倍啥,“玉大人禾乘,你說我怎么就攤上這事∷渎疲” “怎么了始藕?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長氮趋。 經(jīng)常有香客問我伍派,道長,這世上最難降的妖魔是什么剩胁? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任诉植,我火速辦了婚禮,結(jié)果婚禮上昵观,老公的妹妹穿的比我還像新娘晾腔。我一直安慰自己,他們只是感情好啊犬,可當(dāng)我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布灼擂。 她就那樣靜靜地躺著,像睡著了一般觉至。 火紅的嫁衣襯著肌膚如雪剔应。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天语御,我揣著相機與錄音峻贮,去河邊找鬼。 笑死沃暗,一個胖子當(dāng)著我的面吹牛月洛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播孽锥,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼嚼黔,長吁一口氣:“原來是場噩夢啊……” “哼细层!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起唬涧,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤疫赎,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后碎节,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體捧搞,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年狮荔,在試婚紗的時候發(fā)現(xiàn)自己被綠了胎撇。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡殖氏,死狀恐怖晚树,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情雅采,我是刑警寧澤爵憎,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站婚瓜,受9級特大地震影響宝鼓,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜巴刻,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一愚铡、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧冈涧,春花似錦茂附、人聲如沸正蛙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽乒验。三九已至愚隧,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間锻全,已是汗流浹背狂塘。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鳄厌,地道東北人荞胡。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像了嚎,于是被迫代替她去往敵國和親泪漂。 傳聞我的和親對象是個殘疾皇子廊营,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,465評論 2 348

推薦閱讀更多精彩內(nèi)容