iOS开发经验总结iOS学习笔记iOS基础扩展

iOS开发--地图与定位

2015-10-18  本文已影响871人  Zentopia

一、定位

实现定位需要使用Core Location框架(Core Location框架属于Core Services层):

步骤:

示例代码:

创建定位管理对象

//创建一个定位管理对象
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
//要求locationManager对象返回全部信息,参数用于过滤信息,一般添kCLDistanceFilterNone意思是不过滤
[locationManager setDistanceFilter:kCLDistanceFilterNone];
//设置定位精度,精度越高耗电量越高
[locationManager setDesiredAccuracy:kCLLocationAccuracyNearestTenMeters];
//设置代理
locationManager.delegate = self;
//开始定位,这是异步方法
[locationManager startUpdatingLocation];

实现协议方法

实现<CLLocationManagerDelegate>协议里的代理方法,方法在定位开始后会不断被调用。

iOS6.0之前:
- (void) locationManager:(CLLocationManagerr *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
//从newLocation对象中获取当前的经纬度坐标,CLLocationCoordinate2D是结构体
CLLocationCoordinate2D coord2D = newLocation.coordinate;
NSLog(@"%f, %f", coord2D.longitude, coord2D.latitude);
[manager stopUpdatingLocation];
}

iOS6.0之后:
- (void) locationManager: (CLLocationManager *)manager didUpdateLocations: (NSArray *)locations
{
for(CLLocation *location in locations)
{
CLLocationCoordinate2D coord2D = location.coordinate;
NSLog(@"%f, %f", coord2D.longitude, coord2D.latitude);
}
}

Tip:

CLLocation解析:newlocation是CLLocation对象。

二、位置的反编码

位置的反编码就是将经纬度转换成具体的城市位置信息。iOS5.0之后使用CLGeocoder类用于反编码处理。

步骤

示例代码

//创建一个反编码处理对象
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
//geocoder对象调用位置反编码方法,传入CLLocation类型的参数(要反编码的位置信息)
[geocoder reverseGeocodeLocation: newLocation 
                completionHandler:^(NSArray *placemarks, NSError *error)
                {
                    for(CLPlacemark *place in placemarks)
                    {
                        NSLog(@"name, %@", place.name);                         //位置名
                        NSLog(@"thoroughfare, %@", place.thoroughfare);         //街道
                        NSLog(@"subThoroughfare, %@", place.subThoroughfare);   //子街道
                        NSLog(@"locality, %@", place.locality);                 //市
                        NSLog(@"subLocality, %@", place.subLocality);           //区
                        NSLog(@"country, %@", place.country);                   //国家
                    }
                }]

三、地图

步骤:

示例代码

//创建地图视图对象
MKMapView *mapView = [[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
//设置地图视图的代理
mapView.delegate = self;
//设置是否显示用户当前位置
mapView.showsUserLocation = YES;
//设置地图显示类型:标准地图、卫星地图、混合地图
mapView.mapType = MKMapTypeStandard;
//提供经纬度信息
CLLocationCoordinate2D coord2D = {39.910650, 116.47030};
//显示区域精度
MKCoordinateSpan span = {0.1, 0.1};
//设置显示区域,MKCoordinateRegion是结构体类型
MKCoordinateRegion region = {coord2D, span};
//给地图设置显示区域
[mapView setRegion: region animated: YES];
[self.view addSubview: mapView];

常用的代理方法

上一篇下一篇

猜你喜欢

热点阅读