MapView 地圖參考

#import "ViewController.h"

#import "MapKit/MapKit.h"

@interface ViewController ()<MKMapViewDelgate>

{UITextField *latitudeTF;

UITextField *longtitudeTF;

}

@property(nonatomic,strong)MKMapView *mapview;

@property(nonatomic,strong)CLGeocoder *geocoder;

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

// 初始化

self.geocoder = [[CLGeocoder alloc]init];

// 初始化地圖

self.mapview = [[MKMapView alloc]initWithFrame:self.view.frame];

// 設(shè)置屬性

// 設(shè)置標(biāo)準(zhǔn)地圖

self.mapview.mapType = MKMapTypeStandard;

// 設(shè)置地圖可滾動(dòng)

self.mapview.scrollEnabled = YES;

// 展示用戶當(dāng)前顯示位置

self.mapview.showsUserLocation = YES;

// 設(shè)置代理

self.mapview.delegate = self;

// 設(shè)置允許縮放

self.mapview.zoomEnabled = YES;

// 添加到視圖上

[self.view addSubview:_mapview];

// 設(shè)置地圖顯示的經(jīng)緯度為39.5427 經(jīng)度為116.2317

[self locateToLatitude:39.5427 longtitude:116.2317];

// 設(shè)置長(zhǎng)按手勢(shì)

UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPress:)];

[self.mapview addGestureRecognizer:longPress];

// 創(chuàng)建緯度Label

UILabel *latitudeLabel = [[UILabel alloc]initWithFrame:CGRectMake(5, 20, 40, 30)];

latitudeLabel.text = @"緯度";

// 添加到視圖上

[self.mapview addSubview:latitudeLabel];

// 創(chuàng)建緯度文本框

latitudeTF = [[UITextField alloc]initWithFrame:CGRectMake(45, 20, 100, 30)];

latitudeTF.text = @"23.12672";

latitudeTF.borderStyle = UITextBorderStyleRoundedRect;

// 數(shù)字鍵盤

latitudeTF.keyboardType = UIKeyboardTypeNumberPad;

// 添加到視圖上

[self.mapview addSubview:latitudeTF];

// 創(chuàng)建經(jīng)度Label

UILabel *longtitudeLabel = [[UILabel alloc]initWithFrame:CGRectMake(145, 20, 40, 30)];

longtitudeLabel.text = @"經(jīng)度";

// 添加到視圖上

[self.mapview addSubview:longtitudeLabel];

// 創(chuàng)建經(jīng)度文本框

longtitudeTF = [[UITextField alloc]initWithFrame:CGRectMake(185, 20, 100, 30)];

longtitudeTF.text = @"113.395";

longtitudeTF.borderStyle = UITextBorderStyleRoundedRect;

// 數(shù)字鍵盤

longtitudeTF.keyboardType = UIKeyboardTypeNumberPad;

// 添加到視圖上

[self.mapview addSubview:longtitudeTF];

// 創(chuàng)建按鈕

UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

btn.frame =CGRectMake(285, 20, 40, 30);

[btn setTitle:@"GO" forState:UIControlStateNormal];

// 添加點(diǎn)擊事件

[btn addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];

[self.mapview addSubview:btn];

CGFloat width = self.view.frame.size.width;

NSLog(@"%f",width);

}

// 前往另一個(gè)地圖界面

-(void)click

{

[latitudeTF resignFirstResponder];

[longtitudeTF resignFirstResponder];

//經(jīng)度

NSString *latitudeStr = latitudeTF.text;

//緯度

NSString *longtitudeStr = longtitudeTF.text;

//如果用戶輸入的經(jīng)度喘漏、緯度為空

if (latitudeStr != nil && latitudeStr.length > 0

&& longtitudeStr!= nil && longtitudeStr.length > 0)

{

//設(shè)置經(jīng)度腺兴、緯度

[self locateToLatitude:latitudeStr.floatValue longtitude:longtitudeStr.floatValue];

}

}

-(void)locateToLatitude:(CGFloat)latitude longtitude:(CGFloat)longitude{? ? //設(shè)置地圖中的的經(jīng)度、緯度? ? CLLocationCoordinate2D center = {latitude,longitude};? ? //設(shè)置地圖顯示的范圍? ? MKCoordinateSpan span;? ? //地圖顯示范圍越小阴汇,細(xì)節(jié)越清楚遭垛;? ? span.latitudeDelta = 0.01;? ? span.longitudeDelta = 0.01;? ? //創(chuàng)建MKCoordinateRegion對(duì)象尼桶,該對(duì)象代表地圖的顯示中心和顯示范圍? ? MKCoordinateRegion region = {center,span};? ? //設(shè)置當(dāng)前地圖的顯示中心和顯示范圍? ? [self.mapview setRegion:region animated:YES];? ? // 設(shè)置一個(gè)固定的錨點(diǎn)? ? MKPointAnnotation *annotation = [[MKPointAnnotation alloc]init];? ? // 設(shè)置顯示的標(biāo)題? ? annotation.title = @"一個(gè)新的地點(diǎn)";? ? annotation.subtitle? = @"我喜歡的地方";? ? // 添加位置? ? CLLocationCoordinate2D coordinate = {latitude,longitude};? ? annotation.coordinate = coordinate;? ? // 添加錨點(diǎn)到視圖上? ? [self.mapview addAnnotation:annotation];}// 設(shè)置長(zhǎng)按手勢(shì)的觸發(fā)方法-(void)longPress:(UILongPressGestureRecognizer *)press{? ? // 定義坐標(biāo)值? ? CGPoint cp = [press locationInView:self.mapview];? ? // 根據(jù)坐標(biāo)獲取經(jīng)緯度? ? CLLocationCoordinate2D coordinate = [self.mapview convertPoint:cp toCoordinateFromView:self.mapview];? ? // 將經(jīng)緯度包裝成CLLocation對(duì)象? ? CLLocation *location = [[CLLocation alloc]initWithLatitude:coordinate.latitude longitude:coordinate.longitude];? ? // 根據(jù)經(jīng)緯度反向解析地址? ? [self.geocoder reverseGeocodeLocation:location completionHandler:^(NSArray* _Nullable placemarks, NSError * _Nullable error) {? ? ? ? ? ? ? ? if (placemarks.count > 0) {? ? ? ? ? ? CLPlacemark *placemark = placemarks[0];? ? ? ? ? ? // 獲取地址信息對(duì)應(yīng)的地址詳情? ? ? ? ? ? NSArray *addrArr = [placemark.addressDictionary objectForKey:@"FormattedAddressLines"];? ? ? ? ? ? NSMutableString *addreStr = [[NSMutableString alloc]init];? ? ? ? ? ? for (int i = 0; i)annotation

{

static NSString *annoID = @"FKAnno";

// 設(shè)置可重用的錨點(diǎn)控件

MKAnnotationView *annoView = [mapView dequeueReusableAnnotationViewWithIdentifier:annoID];

if (!annoView) {

annoView = [[MKAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:annoID];

}

// 為錨點(diǎn)添加圖片

annoView.image = [UIImage imageNamed:@"pos.gif"];

// 設(shè)置該控件是否顯示氣泡

annoView.canShowCallout = YES;

UIButton *btn = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

[btn addTarget:self action:@selector(goclick) forControlEvents:UIControlEventTouchUpInside];

annoView.rightCalloutAccessoryView = btn;

// 返回annoView

return annoView;

}

-(void)goclick

{

NSLog(@"您點(diǎn)擊了錨點(diǎn)信息");

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市锯仪,隨后出現(xiàn)的幾起案子泵督,更是在濱河造成了極大的恐慌,老刑警劉巖庶喜,帶你破解...
    沈念sama閱讀 217,509評(píng)論 6 504
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件小腊,死亡現(xiàn)場(chǎng)離奇詭異救鲤,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)秩冈,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,806評(píng)論 3 394
  • 文/潘曉璐 我一進(jìn)店門本缠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人入问,你說我怎么就攤上這事搓茬。” “怎么了队他?”我有些...
    開封第一講書人閱讀 163,875評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵卷仑,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我麸折,道長(zhǎng)锡凝,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,441評(píng)論 1 293
  • 正文 為了忘掉前任垢啼,我火速辦了婚禮窜锯,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘芭析。我一直安慰自己锚扎,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,488評(píng)論 6 392
  • 文/花漫 我一把揭開白布馁启。 她就那樣靜靜地躺著驾孔,像睡著了一般。 火紅的嫁衣襯著肌膚如雪惯疙。 梳的紋絲不亂的頭發(fā)上翠勉,一...
    開封第一講書人閱讀 51,365評(píng)論 1 302
  • 那天,我揣著相機(jī)與錄音霉颠,去河邊找鬼对碌。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蒿偎,可吹牛的內(nèi)容都是我干的朽们。 我是一名探鬼主播,決...
    沈念sama閱讀 40,190評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼诉位,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼骑脱!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起不从,我...
    開封第一講書人閱讀 39,062評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤惜姐,失蹤者是張志新(化名)和其女友劉穎犁跪,沒想到半個(gè)月后椿息,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體歹袁,經(jīng)...
    沈念sama閱讀 45,500評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,706評(píng)論 3 335
  • 正文 我和宋清朗相戀三年寝优,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了条舔。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,834評(píng)論 1 347
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡乏矾,死狀恐怖孟抗,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情钻心,我是刑警寧澤凄硼,帶...
    沈念sama閱讀 35,559評(píng)論 5 345
  • 正文 年R本政府宣布,位于F島的核電站捷沸,受9級(jí)特大地震影響摊沉,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜痒给,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,167評(píng)論 3 328
  • 文/蒙蒙 一说墨、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧苍柏,春花似錦尼斧、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,779評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至熄捍,卻和暖如春律秃,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背治唤。 一陣腳步聲響...
    開封第一講書人閱讀 32,912評(píng)論 1 269
  • 我被黑心中介騙來泰國(guó)打工棒动, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人宾添。 一個(gè)月前我還...
    沈念sama閱讀 47,958評(píng)論 2 370
  • 正文 我出身青樓船惨,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親缕陕。 傳聞我的和親對(duì)象是個(gè)殘疾皇子粱锐,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,779評(píng)論 2 354

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