标签:ios地图 ios定位 ios导航 地理编码 mapkit
标签(空格分隔): UI补充
在移动互联网时代我们可以去依靠手机上的地图导航区陌生的地方,也可用利用团购的app搜索最近的找餐馆、找酒店、找银行、找电影院……。
- LBS :Location Based Service
- SoLoMo :Social Local Mobile(索罗门)
上面的功能都都用到了地图和定位功能,在iOS开发中,要想加入这2大功能,必须基于2个框架进行开发
- Map Kit :用于地图展示
- Core Location :用于地理定位
当想访问用户的隐私信息时,系统会自动弹出一个对话框让用户授权
一旦用户选择了“Don’t Allow”,意味着你的应用以后就无法使用定位功能
开发者可以在Info.plist中设置NSLocationUsageDescription说明定位的目的
导入框架
导入主头文件
#import <CoreLocation/CoreLocation.h>
CLLocationManager的常用操作
开始用户定位
- (void)startUpdatingLocation;
停止用户定位
- (void) stopUpdatingLocation;
当调用了startUpdatingLocation方法后,就开始不断地定位用户的位置,中途会频繁地调用代理的下面方法
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;
每隔多少米定位一次
@property(assign, nonatomic) CLLocationDistance distanceFilter;
定位精确度(越精确就越耗电)
@property(assign, nonatomic) CLLocationAccuracy desiredAccuracy;
- (void)viewDidLoad {
[super viewDidLoad];
// 1.获取用户的授权状态(iOS7只要使用到定位,就会直接请求授权)
CLAuthorizationStatus status = [CLLocationManager authorizationStatus];
if (status == kCLAuthorizationStatusNotDetermined) {
if ([self.mgr respondsToSelector:@selector(requestAlwaysAuthorization)]) {
[self.mgr requestAlwaysAuthorization];
}
}
// 2.开始定位(当调用该方法,系统就会不停的更新用户的位置)
[self.mgr startUpdatingLocation];
}
#pragma mark - 懒加载
- (CLLocationManager *)mgr
{
if (_mgr == nil) {
self.mgr = [[CLLocationManager alloc] init];
// 设置代理,在代理方法中可以拿到用户的位置
self.mgr.delegate = self;
// 设置定位的精度(精度越高越耗电)
self.mgr.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
// 设置当用户移动的时候,重新来定位
self.mgr.distanceFilter = 10.0;
}
return _mgr;
}
CLLocation用来表示某个位置的地理信息,比如经纬度、海拔等等
@property(readonly, nonatomic) CLLocationCoordinate2D coordinate;
@property(readonly, nonatomic) CLLocationDistance altitude;
@property(readonly, nonatomic) CLLocationDirection course;
@property(readonly, nonatomic) CLLocationSpeed speed;
- (CLLocationDistance)distanceFromLocation:(const CLLocation *)location
地理编码方法
- (void)geocodeAddressString:(NSString *)addressString completionHandler:(CLGeocodeCompletionHandler)completionHandler;
反地理编码方法
- (void)reverseGeocodeLocation:(CLLocation *)location completionHandler:(CLGeocodeCompletionHandler)completionHandler;
当地理\反地理编码完成时,就会调用CLGeocodeCompletionHandler
typedef void (^CLGeocodeCompletionHandler)(NSArray *placemarks, NSError *error);
CLPlacemark的字面意思是地标,封装详细的地址位置信息
@property (nonatomic, readonly) CLLocation *location;
@property (nonatomic, readonly) CLRegion *region;
@property (nonatomic, readonly) NSDictionary *addressDictionary;
@property (nonatomic, readonly) NSString *name;
@property (nonatomic, readonly) NSString *locality;
- (IBAction)geocode {
NSString *address = @"天安门";
//地理编码
[self.geocoder geocodeAddressString:address completionHandler:^(NSArray *placemarks, NSError *error) {
if (error || placemarks.count == 0) return;
for (CLPlacemark *pm in placemarks) {
// 获取地址的全称
NSLog(@"%@", pm.name);
// 获取经纬度
CLLocationCoordinate2D coordinate = pm.location.coordinate;
NSLog(@"纬度:%.2f", coordinate.latitude);
NSLog(@"经度:%.2f", coordinate.longitude);
// 获取城市
NSLog(@"所在城市:%@", pm.administrativeArea);
NSLog(@"所在城市:%@", pm.locality);
}
}];
}
- (IBAction)reverseGeocode {
// 1.获取用户输入的经纬度
NSString *latitude = self.latitudeField.text;
NSString *longitude = self.longitudeField.text;
if (latitude.length == 0 || longitude.length == 0) {
NSLog(@"经度或者纬度不能为空");
return;
}
// 2.反地理编码
CLLocation *location = [[CLLocation alloc] initWithLatitude:latitude.doubleValue longitude:longitude.doubleValue];
[self.geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
if (error || placemarks.count == 0) return;
for (CLPlacemark *pm in placemarks) {
// 获取地址的全称
NSLog(@"%@", pm.name);
// 获取经纬度
CLLocationCoordinate2D coordinate = pm.location.coordinate;
NSLog(@"纬度:%.2f", coordinate.latitude);
NSLog(@"经度:%.2f", coordinate.longitude);
// 获取城市
NSLog(@"所在城市:%@", pm.administrativeArea);
NSLog(@"所在城市:%@", pm.locality);
}
}];
}
蓝色发光原点就是用户的当前位置,蓝色的发光原点专业术语叫“大头针”
MKMapView可以设置一个代理对象,用来监听地图的相关行为
常见的代理方法有
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation;
- (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated;
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated;
MKUserLocation其实是个大头针模型,包括以下属性
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subtitle;
@property (readonly, nonatomic) CLLocation *location;
通过MKMapView的下列方法,可以设置地图显示的位置和区域
设置地图的中心点位置
@property (nonatomic) CLLocationCoordinate2D centerCoordinate;
- (void)setCenterCoordinate:(CLLocationCoordinate2D)coordinate animated:(BOOL)animated;
设置地图的显示区域
@property (nonatomic) MKCoordinateRegion region;
- (void)setRegion:(MKCoordinateRegion)region animated:(BOOL)animated;
MKCoordinateRegion是一个用来表示区域的结构体,定义如下
typedef struct {
CLLocationCoordinate2D center; // 区域的中心点位置
MKCoordinateSpan span; // 区域的跨度
} MKCoordinateRegion;
MKCoordinateSpan的定义
typedef struct {
CLLocationDegrees latitudeDelta; // 纬度跨度
CLLocationDegrees longitudeDelta; // 经度跨度
} MKCoordinateSpan;
大头针的基本操作
(void)addAnnotation:(id )annotation;
添加多个大头针
(void)addAnnotations:(NSArray *)annotations;
移除一个大头针
(void)removeAnnotation:(id )annotation;
移除多个大头针
(id )annotation参数是什么东西?
大头针模型对象:用来封装大头针的数据,比如大头针的位置、标题、子标题等数据
#import <MapKit/MapKit.h>
@interface MyAnnotation : NSObject <MKAnnotation>
/** 坐标位置 */
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
/** 标题 */
@property (nonatomic, copy) NSString *title;
/** 子标题 */
@property (nonatomic, copy) NSString *subtitle;
@end
MyAnnotation *anno = [[MyAnnotation alloc] init];
anno.title = @"大头针";
anno.subtitle = @"大头针大头针";
anno.coordinate = CLLocationCoordinate2DMake(40, 116);
[self.mapView addAnnotation:anno];
如何自定义大头针
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation;
根据传进来的(id )annotation参数创建并返回对应的大头针控件
代理方法的使用注意
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
// 判断annotation的类型
if (![annotation isKindOfClass:[JLTuangouAnnotation class]]) return nil;
// 创建MKAnnotationView
static NSString *ID = @"tuangou";
MKAnnotationView *annoView = [mapView dequeueReusableAnnotationViewWithIdentifier:ID];
if (annoView == nil) {
annoView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:ID];
annoView.canShowCallout = YES;
}
// 传递模型数据
annoView.annotation = annotation;
// 设置图片
MJTuangouAnnotation *tuangouAnnotation = annotation;
annoView.image = [UIImage imageNamed:tuangouAnnotation.icon];
return annoView;
}
地图上的大头针控件是MKAnnotationView
MKAnnotationView的属性
@property (nonatomic, strong) id <MKAnnotation> annotation;
@property (nonatomic, strong) UIImage *image;
@property (nonatomic) BOOL canShowCallout;
@property (nonatomic) CGPoint calloutOffset;
@property (strong, nonatomic) UIView *rightCalloutAccessoryView;
@property (strong, nonatomic) UIView *leftCalloutAccessoryView;
MKPinAnnotationView是MKAnnotationView的子类
MKPinAnnotationView比MKAnnotationView多了2个属性
@property (nonatomic) MKPinAnnotationColor pinColor;
@property (nonatomic) BOOL animatesDrop;
导航的代码:
- (void)startNavigateWithSorceItem:(MKMapItem *)sourceItem destinationItem:(MKMapItem *)destinationItem
{
// 1.创建item数组
NSArray *items = @[sourceItem, destinationItem];
// 2.创建Options
/*
MK_EXTERN NSString * const MKLaunchOptionsDirectionsModeKey 驾驶方式(驾车/步行)
MK_EXTERN NSString * const MKLaunchOptionsMapTypeKey 地图类型
MK_EXTERN NSString * const MKLaunchOptionsShowsTrafficKey 是否展示交通状况
*/
NSDictionary *options = @{MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeWalking,
MKLaunchOptionsMapTypeKey : @(MKMapTypeSatellite),
MKLaunchOptionsShowsTrafficKey : @YES};
// 3.打开系统地图,开始导航
[MKMapItem openMapsWithItems:items launchOptions:options];
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:ios地图 ios定位 ios导航 地理编码 mapkit
原文地址:http://blog.csdn.net/maomaopanjiu/article/details/47345759