點(diǎn)擊地點(diǎn)有坐標(biāo)顯示經(jīng)緯度

coreMotion.framework

CoreLocation.framework

MapKit.framework

第一個頁面

#import<MapKit/MapKit.h>

#import< CoreLocation/CoreLocation.h>


<MKMapViewDelegate,CLLocationManagerDelegate>

{

CLLocationManager *manager;

}

@property(nonatomic,strong)MKMapView *mapView;




[super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

// 實(shí)例化地圖視圖

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

// 設(shè)置地圖類型

self.mapView.mapType = MKMapTypeHybrid; // 混合地圖

self.mapView.mapType = MKMapTypeSatellite; // 衛(wèi)星圖

self.mapView.mapType = MKMapTypeStandard; // 平面地圖

// 設(shè)置地圖可以滾動

self.mapView.scrollEnabled = YES;

// 設(shè)置可以嚙捏合

self.mapView.pitchEnabled = YES;

// 設(shè)置可以旋轉(zhuǎn)

self.mapView.rotateEnabled? = YES;

// 設(shè)置可以點(diǎn)擊縮放

self.mapView.zoomEnabled = YES;

// 設(shè)置委托

self.mapView.delegate = self;

// 設(shè)置可以顯示用戶當(dāng)前位置

self.mapView.showsUserLocation = YES;

//

[self.view addSubview:self.mapView];

// 盜用CLLocationManager獲取當(dāng)前位置

manager = [[CLLocationManager alloc] init];

//距離過濾

manager.distanceFilter = 10;

manager.desiredAccuracy = kCLLocationAccuracyBest;

manager.delegate = self;

manager.pausesLocationUpdatesAutomatically = YES;

[manager setActivityType:CLActivityTypeOther];

[manager requestAlwaysAuthorization];

// 添加“長按手勢”片橡,觸發(fā)后可以顯示當(dāng)前位置扑庞,

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

[self.mapView addGestureRecognizer:longPress];

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(getPointToCoordinate:)];

[self.mapView addGestureRecognizer:tap];





-(void)getPointToCoordinate:(UITapGestureRecognizer *)reco

{

// 北京八維研修學(xué)院

// 獲得手勢點(diǎn)擊的坐標(biāo)

CGPoint point = [reco locationInView:self.mapView];

// 把坐標(biāo)點(diǎn)轉(zhuǎn)換為經(jīng)緯度信息

CLLocationCoordinate2D coor = [self.mapView convertPoint:point toCoordinateFromView:self.mapView];

NSLog(@"緯度:%g,經(jīng)度:%g",coor.latitude,coor.longitude);

// 添加錨點(diǎn)

MKPointAnnotation *pointAnno = [[MKPointAnnotation alloc] init];

pointAnno.coordinate = coor;

pointAnno.title = [NSString stringWithFormat:@"緯度:%g,經(jīng)度:%g",coor.latitude,coor.longitude];

// 根據(jù)經(jīng)緯度解析為地址字符串()

CLGeocoder *geocoder = [[CLGeocoder alloc] init];

CLLocation *location = [[CLLocation alloc] initWithLatitude:coor.latitude longitude:coor.longitude];

[geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {

CLPlacemark *placeMark = [placemarks lastObject];

pointAnno.subtitle = placeMark.name;

dispatch_async(dispatch_get_main_queue(), ^{

[self.mapView addAnnotation:pointAnno];

});

}];

}

//

-(void)showCurrentLocation:(UILongPressGestureRecognizer *)reco

{

[manager startUpdatingLocation];

}

#pragma mark - CLLocationManagerDelegate

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations

{

CLLocation *currentLocation = [locations lastObject];

// 設(shè)置顯示范圍没隘,參數(shù)值越小越精確

MKCoordinateSpan span = MKCoordinateSpanMake(0.1, 0.1);

// 設(shè)置顯示區(qū)域(包括中心點(diǎn)和范圍)

MKCoordinateRegion region = MKCoordinateRegionMake(currentLocation.coordinate, span);

// 把表示區(qū)域的圓形區(qū)域轉(zhuǎn)換為一個符合地理方圓的區(qū)域

MKCoordinateRegion fitRegion = [self.mapView regionThatFits:region];

// 讓地圖顯示當(dāng)前位置

[self.mapView setRegion:fitRegion animated:YES];

}

#pragma mark - MKMapViewDelegate

- (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated

{

NSLog(@"顯示區(qū)域?qū)⒁兓?);

}

- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated

{

NSLog(@"顯示區(qū)域變化完成");

}

- (void)mapViewWillStartLoadingMap:(MKMapView *)mapView

{

NSLog(@"將要加載地圖");

}

- (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView

{

NSLog(@"加載地圖完成");

}

- (void)mapViewDidFailLoadingMap:(MKMapView *)mapView withError:(NSError *)error

{

NSLog(@"加載地圖失敗");

}

- (void)mapViewWillStartRenderingMap:(MKMapView *)mapView NS_AVAILABLE(10_9, 7_0)

{

NSLog(@"將要渲染地圖");

}

- (void)mapViewDidFinishRenderingMap:(MKMapView *)mapView fullyRendered:(BOOL)fullyRendered NS_AVAILABLE(10_9, 7_0)

{

NSLog(@"渲染地圖完成");

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子搓谆,更是在濱河造成了極大的恐慌薯嗤,老刑警劉巖嘹害,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異吮便,居然都是意外死亡笔呀,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門许师,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人僚匆,你說我怎么就攤上這事微渠。” “怎么了咧擂?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵逞盆,是天一觀的道長。 經(jīng)常有香客問我松申,道長云芦,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任贸桶,我火速辦了婚禮舅逸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘刨啸。我一直安慰自己堡赔,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布设联。 她就那樣靜靜地躺著善已,像睡著了一般。 火紅的嫁衣襯著肌膚如雪离例。 梳的紋絲不亂的頭發(fā)上换团,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機(jī)與錄音宫蛆,去河邊找鬼艘包。 笑死,一個胖子當(dāng)著我的面吹牛耀盗,可吹牛的內(nèi)容都是我干的想虎。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼叛拷,長吁一口氣:“原來是場噩夢啊……” “哼舌厨!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起忿薇,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤裙椭,失蹤者是張志新(化名)和其女友劉穎躏哩,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體揉燃,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡扫尺,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了炊汤。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片正驻。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖婿崭,靈堂內(nèi)的尸體忽然破棺而出拨拓,到底是詐尸還是另有隱情肴颊,我是刑警寧澤氓栈,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站婿着,受9級特大地震影響授瘦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜竟宋,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一提完、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧丘侠,春花似錦徒欣、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至挪捕,卻和暖如春粗梭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背级零。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工断医, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人奏纪。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓鉴嗤,卻偏偏與公主長得像,于是被迫代替她去往敵國和親序调。 傳聞我的和親對象是個殘疾皇子醉锅,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

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