iOS地圖定位使用幾個小功能(轉(zhuǎn)載)

iOS系統(tǒng)自帶的定位服務(wù)可以實現(xiàn)很多需求咽袜。比如:獲取當(dāng)前經(jīng)緯度枕稀,獲取當(dāng)前位置信息等等。

獲取當(dāng)前經(jīng)緯度

首先導(dǎo)入#import 凹联,定義CLLocationManager的實例哆档,實現(xiàn)CLLocationManagerDelegate。

@interface ViewController ()

{

CLLocationManager *_locationManager;

}

@end

開始定位的方法:

- (void)startLocating

{

if([CLLocationManager locationServicesEnabled])

{

_locationManager = [[CLLocationManager alloc] init];

//設(shè)置定位的精度

[_locationManager setDesiredAccuracy:kCLLocationAccuracyBest];

_locationManager.distanceFilter = 100.0f;

_locationManager.delegate = self;

if ([[[UIDevice currentDevice] systemVersion] floatValue] > 8.0)

{

[_locationManager requestAlwaysAuthorization];

[_locationManager requestWhenInUseAuthorization];

}

//開始實時定位

[_locationManager startUpdatingLocation];

}

}

實現(xiàn)代理方法:

-(void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status

{

NSLog(@"Longitude = %f", manager.location.coordinate.longitude);

NSLog(@"Latitude = %f", manager.location.coordinate.latitude);

[_locationManager stopUpdatingLocation];

}

獲取當(dāng)前位置信息

在上面的代理方法中

-(void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status

{

NSLog(@"Longitude = %f", manager.location.coordinate.longitude);

NSLog(@"Latitude = %f", manager.location.coordinate.latitude);

[_locationManager stopUpdatingLocation];

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

[geoCoder reverseGeocodeLocation:manager.location completionHandler:^(NSArray *placemarks, NSError *error) {

for (CLPlacemark * placemark in placemarks) {

NSDictionary *test = [placemark addressDictionary];

// ?Country(國家) ?State(城市) ?SubLocality(區(qū))

NSLog(@"%@", [test objectForKey:@"Country"]);

NSLog(@"%@", [test objectForKey:@"State"]);

NSLog(@"%@", [test objectForKey:@"SubLocality"]);

NSLog(@"%@", [test objectForKey:@"Street"]);

}

}];

}

這樣就很簡單獲取了當(dāng)前位置的詳細(xì)信息。

獲取某一個地點的經(jīng)緯度

- (void)getLongitudeAndLatitudeWithCity:(NSString *)city

{

//city可以為中文

NSString *oreillyAddress = city;

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

[myGeocoder geocodeAddressString:oreillyAddress completionHandler:^(NSArray *placemarks, NSError *error) {

if ([placemarks count] > 0 && error == nil)

{

NSLog(@"Found %lu placemark(s).", (unsigned long)[placemarks count]);

CLPlacemark *firstPlacemark = [placemarks objectAtIndex:0];

NSLog(@"Longitude = %f", firstPlacemark.location.coordinate.longitude);

NSLog(@"Latitude = %f", firstPlacemark.location.coordinate.latitude);

}

else if ([placemarks count] == 0 && error == nil)

{

NSLog(@"Found no placemarks.");

}

else if (error != nil)

{

NSLog(@"An error occurred = %@", error);

}

}];

}

計算兩個地點之間的距離

- (double)distanceByLongitude:(double)longitude1 latitude:(double)latitude1 longitude:(double)longitude2 latitude:(double)latitude2{

CLLocation* curLocation = [[CLLocation alloc] initWithLatitude:latitude1 longitude:longitude1];

CLLocation* otherLocation = [[CLLocation alloc] initWithLatitude:latitude2 longitude:longitude2];

double distance ?= [curLocation distanceFromLocation:otherLocation];//單位是m

return distance;

}

首先我們可以用上面的getLongitudeAndLatitudeWithCity方法獲取某一個地點的經(jīng)緯度杠巡。(有問題可以關(guān)注微信iOS開發(fā):iOSDevTip)比如我們獲取北京和上海的經(jīng)緯度分別為:北京Longitude = 116.405285雇寇,Latitude = 39.904989 上海Longitude = 121.472644, Latitude = 31.231706, 那么北京和上海之間的距離就是:

double distance = [self distanceByLongitude:116.405285 latitude:39.904989 longitude:121.472644 latitude:31.231706];

NSLog(@"Latitude = %f", distance);

計算的是大概的距離,可能沒有那么精準(zhǔn)厘线。輸入結(jié)果為:

distance = 1066449.749194

代碼下載地址:https://github.com/worldligang/MapDistanceMaster.git

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末造壮,一起剝皮案震驚了整個濱河市骂束,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌展箱,老刑警劉巖蹬昌,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異栖榨,居然都是意外死亡明刷,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門愚争,熙熙樓的掌柜王于貴愁眉苦臉地迎上來挤聘,“玉大人轰枝,你說我怎么就攤上這事檬洞。” “怎么了湾戳?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵广料,是天一觀的道長。 經(jīng)常有香客問我韧衣,道長,這世上最難降的妖魔是什么畅铭? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任勃蜘,我火速辦了婚禮,結(jié)果婚禮上炉擅,老公的妹妹穿的比我還像新娘。我一直安慰自己谍失,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布颠印。 她就那樣靜靜地躺著攒巍,像睡著了一般。 火紅的嫁衣襯著肌膚如雪柒莉。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天窿凤,我揣著相機(jī)與錄音跨蟹,去河邊找鬼。 笑死窗轩,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的仓洼。 我是一名探鬼主播堤舒,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼箕戳!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起陵吸,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤介牙,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后旨指,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體喳整,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年搬素,在試婚紗的時候發(fā)現(xiàn)自己被綠了魏保。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡谓罗,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出揭措,到底是詐尸還是另有隱情刻蚯,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布躬充,位于F島的核電站,受9級特大地震影響充甚,放射性物質(zhì)發(fā)生泄漏器钟。R本人自食惡果不足惜津坑,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一疆瑰、第九天 我趴在偏房一處隱蔽的房頂上張望昙啄。 院中可真熱鬧穆役,春花似錦梳凛、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽塑悼。三九已至,卻和暖如春霞势,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背愕贡。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工巷屿, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人攒庵。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓浓冒,卻偏偏與公主長得像,于是被迫代替她去往敵國和親稳懒。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,486評論 2 348

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