国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS 原生地圖地理編碼與反地理編碼(詳解)

2020-07-26 02:50:40
字體:
供稿:網(wǎng)友

當(dāng)我們要在App實(shí)現(xiàn)功能:輸入地名,編碼為經(jīng)緯度,實(shí)現(xiàn)導(dǎo)航功能。

那么,我需要用到原生地圖中的地理編碼功能,而在Core Location中主要包含了定位、地理編碼(包括反編碼)功能。

在文件中導(dǎo)入

#import <CoreLocation/CoreLocation.h>

地理編碼:

/**  地理編碼  */- (void)geocoder {      CLGeocoder *geocoder=[[CLGeocoder alloc]init];      NSString *addressStr = @"廣東省深圳市寶安區(qū)";//位置信息      [geocoder geocodeAddressString:addressStr completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {     if (error!=nil || placemarks.count==0) {       return ;     }     //創(chuàng)建placemark對象     CLPlacemark *placemark=[placemarks firstObject];     //經(jīng)度     NSString *longitude =[NSString stringWithFormat:@"%f",placemark.location.coordinate.longitude];     //緯度     NSString *latitude =[NSString stringWithFormat:@"%f",placemark.location.coordinate.latitude];          NSLog(@"經(jīng)度:%@,緯度:%@",longitude,latitude);        }];    }

地理反編碼:

/**  地理反編碼  */- (void)reverseGeocoder{   //創(chuàng)建地理編碼對象   CLGeocoder *geocoder=[[CLGeocoder alloc]init];      //經(jīng)度   NSString *longitude = @"113.23";   //緯度   NSString *latitude = @"23.16";         //創(chuàng)建位置   CLLocation *location=[[CLLocation alloc]initWithLatitude:[latitude floatValue] longitude:[longitude floatValue]];         //反地理編碼   [geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {     //判斷是否有錯(cuò)誤或者placemarks是否為空     if (error !=nil || placemarks.count==0) {       NSLog(@"%@",error);       return ;     }     for (CLPlacemark *placemark in placemarks) {       //詳細(xì)地址       NSString *addressStr = placemark.name;       NSLog(@"詳細(xì)地址1:%@",addressStr);       NSLog(@"詳細(xì)地址2:%@",placemark.addressDictionary);       NSLog(@"詳細(xì)地址3:%@",placemark.locality);     }        }]; }

以上這篇iOS 原生地圖地理編碼與反地理編碼(詳解)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 包头市| 县级市| 马尔康县| 应城市| 赤峰市| 泸定县| 沈丘县| 祥云县| 西峡县| 梁平县| 六安市| 舞钢市| 闽清县| 镇坪县| 南漳县| 扬州市| 长白| 台山市| 东港市| 德江县| 泊头市| 南宁市| 乌鲁木齐市| 怀化市| 马关县| 那曲县| 龙里县| 嵩明县| 个旧市| 晴隆县| 诏安县| 瓦房店市| 巴南区| 潮州市| 廊坊市| 增城市| 英山县| 盱眙县| 额济纳旗| 河源市| 拉孜县|