iOS 地图
MapKit框架使用前提
导入框架 导入主头文件
#import <MapKit/MapKit.h> MapKit框架使用须知
MapKit框架中所有数据类型的前缀都是MK
MapKit有一个比较重要的UI控件 :MKMapView,专门用于地图显示 跟踪显示用户的位置 设置MKMapView的userTrackingMode属性可以跟踪显示用户的当前位置
MKUserTrackingModeNone :不跟踪用户的位置
MKUserTrackingModeFollow :跟踪并在地图上显示用户的当前位置
MKUserTrackingModeFollowWithHeading :跟踪并在地图上显示用户的当前位置,地图会跟随用户的前进方向进行旋转 下图是跟踪效果
蓝色发光圆点就是用户的当前位置
蓝色发光原点,专业术语叫做“大头针” 可以通过设置MKMapView的mapViewType设置地图类型
MKMapTypeStandard :普通地图(左图)
MKMapTypeSatellite :卫星云图 (中图)
MKMapTypeHybrid :普通地图覆盖于卫星云图之上
MKMapView的代理 MKMapView可以设置一个代理对象,用来监听地图的相关行为 常见的代理方法有
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation;
一个位置更改默认只会调用一次,不断监测用户的当前位置
每次调用,都会把用户的最新位置(userLocation参数)传进来 - (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated;
地图的显示区域即将发生改变的时候调用 - (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated;
地图的显示区域已经发生改变的时候调用 MKUserLocation
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 MKCoordinateRegion是一个用来表示区域的结构体,定义如下
typedef struct {
CLLocationCoordinate2D center; // 区域的中心点位置
MKCoordinateSpan span; // 区域的跨度
} MKCoordinateRegion; MKCoordinateSpan的定义
typedef struct {
CLLocationDegrees latitudeDelta; // 纬度跨度
CLLocationDegrees longitudeDelta; // 经度跨度
} MKCoordinateSpan;
大头针的基本操作
添加一个大头针
- (void)addAnnotation:(id <MKAnnotation>)annotation; 添加多个大头针
- (void)addAnnotations:(NSArray *)annotations; 移除一个大头针
- (void)removeAnnotation:(id <MKAnnotation>)annotation; 移除多个大头针
- (void)removeAnnotations:(NSArray *)annotations; (id <MKAnnotation>)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 = @"传智播客iOS学院";
anno.subtitle = @"全部课程15折,会员20折,老学员30折";
anno.coordinate = CLLocationCoordinate2DMake(, );
[self.mapView addAnnotation:anno];
自定义大头针 如何自定义大头针
设置MKMapView的代理
实现下面的代理方法,返回大头针控件
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation;
根据传进来的(id <MKAnnotation>)annotation参数创建并返回对应的大头针控件 代理方法的使用注意
如果返回nil,显示出来的大头针就采取系统的默认样式
标识用户位置的蓝色发光圆点,它也是一个大头针,当显示这个大头针时,也会调用代理方法
因此,需要在代理方法中分清楚(id <MKAnnotation>)annotation参数代表自定义的大头针还是蓝色发光圆点 - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
// 判断annotation的类型
if (![annotation isKindOfClass:[MJTuangouAnnotation 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 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
MKPinAnnotationView是MKAnnotationView的子类 MKPinAnnotationView比MKAnnotationView多了2个属性
@property (nonatomic) MKPinAnnotationColor pinColor;
大头针颜色 @property (nonatomic) BOOL animatesDrop;
大头针第一次显示时是否从天而降
注意:如果在storyBoard中使用了MKMapView项目中需要手动导入MpKit框架
//
// ViewController.m
// 03-地图的基本使用
//
// Created by apple on 15/1/30.
// Copyright (c) 2015年 apple. All rights reserved.
// #import "ViewController.h"
#import <MapKit/MapKit.h> @interface ViewController () <MKMapViewDelegate> // 显示地图的View
@property (weak, nonatomic) IBOutlet MKMapView *mapView; @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; // 设置代理
self.mapView.delegate = self; // 跟踪用户的位置
self.mapView.userTrackingMode = MKUserTrackingModeFollow; // 设置地图类型
self.mapView.mapType = MKMapTypeSatellite;
} /**
* 定位到用户的位置会执行该方法
*
* @param userLocation 大头针模型
*/
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
// 取出用户的位置
CLLocationCoordinate2D coordinate = userLocation.location.coordinate;
NSLog(@"纬度:%f 经度:%f", coordinate.latitude, coordinate.longitude); // 改变大头针显示的内容(通过改变大头针模型的属性)
// userLocation.title = @"广州市";
// userLocation.subtitle = @"广东省广州市天河区";
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
CLLocation *location = userLocation.location;
[geocoder reverseGeocodeLocation:location completionHandler:^(NSArray *placemarks, NSError *error) {
if (placemarks.count == || error) return; CLPlacemark *pm = [placemarks firstObject]; if (pm.locality) {
userLocation.title = pm.locality;
} else {
userLocation.title = pm.administrativeArea;
}
userLocation.subtitle = pm.name;
}];
} @end
//
// ViewController.m
// 03-地图的基本使用
//
// Created by apple on 15/1/30.
// Copyright (c) 2015年 apple. All rights reserved.
// #import "ViewController.h"
#import <MapKit/MapKit.h> #define kLatitudeDelta 0.002703
#define kLongitudeDelta 0.001717 @interface ViewController () <MKMapViewDelegate> // 显示地图的View
@property (weak, nonatomic) IBOutlet MKMapView *mapView; @property (nonatomic,strong) CLLocationManager *mgr;
/**
* 点击之后回到用户的位置
*/
- (IBAction)backToUserLocation; @end @implementation ViewController - (CLLocationManager *)mgr{
if (!_mgr) {
_mgr = [[CLLocationManager alloc] init]; [_mgr requestAlwaysAuthorization];
}
return _mgr;
} - (void)viewDidLoad {
[super viewDidLoad]; #warning 在iOS8中需要使用CLLocationManager requestAlwaysAuthorization设置后才能定位
self.mgr; // 设置代理
self.mapView.delegate = self; // 跟踪用户的位置
self.mapView.userTrackingMode = MKUserTrackingModeFollow; // 设置地图类型
// self.mapView.mapType = MKMapTypeSatellite;
} /**
* 定位到用户的位置会执行该方法
*
* @param userLocation 大头针模型
*/
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
// 取出用户的位置
CLLocationCoordinate2D coordinate = userLocation.location.coordinate;
NSLog(@"纬度:%f 经度:%f", coordinate.latitude, coordinate.longitude); // 设置mapView显示的位置
// [mapView setCenterCoordinate:coordinate animated:YES];
// 设置mapView的显示区域
MKCoordinateSpan span = MKCoordinateSpanMake(kLatitudeDelta, kLongitudeDelta);
MKCoordinateRegion region = MKCoordinateRegionMake(coordinate, span);
[mapView setRegion:region animated:YES];
}
/**
* 区域改变的时候会调用(拖动地图)
*
* @param mapView <#mapView description#>
* @param animated <#animated description#>
*/
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{
MKCoordinateRegion region = mapView.region;
CLLocationCoordinate2D center = region.center;
MKCoordinateSpan span = region.span;
NSLog(@"纬度:%f 经度:%f", center.latitude, center.longitude);
NSLog(@"纬度跨度:%f 经度跨度:%f", span.latitudeDelta, span.longitudeDelta);
} //- (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated
//{
//
//} - (IBAction)backToUserLocation {
MKCoordinateSpan span = MKCoordinateSpanMake(kLatitudeDelta, kLongitudeDelta);
MKCoordinateRegion region = MKCoordinateRegionMake(self.mapView.userLocation.location.coordinate, span);
// [self.mapView setCenterCoordinate:self.mapView.userLocation.location.coordinate animated:YES];
[self.mapView setRegion:region animated:YES];
}
@end
ios8 地图需要代码控制授权
#import "ViewController.h"
#import <MapKit/MapKit.h> @interface ViewController () <MKMapViewDelegate> @property (weak, nonatomic) IBOutlet MKMapView *mapView; // 请求定位需要使用CLLocationManager,所以这里需要创建一个CLLocationManager对象(iOS8)
@property(nonatomic,strong)CLLocationManager *mgr; @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; self.mapView.delegate = self;
self.mapView.userTrackingMode = MKUserTrackingModeFollow; // 如果是iOS8,需要请求授权方式(进行判断,否则在iOS7会崩溃,需要先在info.plist中配置)
从iOS 8开始,用户定位分两种情况
总是使用用户位置:NSLocationAlwaysUsageDescription
使用应用时定位:NSLocationWhenInUseDescription
if ([self.mgr respondsToSelector:@selector(requestAlwaysAuthorization)]) {
[self.mgr requestAlwaysAuthorization];
}
} - (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
NSLog(@"拿到用户的位置");
} - (CLLocationManager *)mgr
{
if (_mgr == nil) {
_mgr = [[CLLocationManager alloc] init];
}
return _mgr;
} @end
iOS 地图的更多相关文章
- 如何在iOS地图上高效的显示大量数据
2016-01-13 / 23:02:13 刚才在微信上看到这篇由cocoachina翻译小组成员翻译的文章,觉得还是挺值得参考的,因此转载至此,原文请移步:http://robots.thought ...
- 【高德API】如何利用MapKit开发全英文检索的iOS地图
原文:[高德API]如何利用MapKit开发全英文检索的iOS地图 制作全英文地图的展示并不困难,但是要制作全英文的数据检索列表,全英文的信息窗口,你就没办法了吧.告诉你,我有妙招!使用iOS自带的M ...
- [ios3-地图] 如何在iOS地图上高效的显示大量数据 [转]
[转至:http://blog.csdn.net/pjk1129/article/details/17358337] 原文:How To Efficiently Display Large Amoun ...
- 【iOS地图开发】巧妙打造中英文全球地图
地图开发的同学们经常遇到这样的问题,国内版地图开发,用高德或者百度就行了.但是,国外的地图怎么办?这里告诉大家,如果利用iOS地图,打造中英文的,国内国外都能用的,全球地图. 制作全英文地图的展示并不 ...
- iOS 地图相关
参考博文:https://blog.csdn.net/zhengang007/article/details/52858198?utm_source=blogxgwz7 1.坐标系 目前常见的坐标系有 ...
- iOS 地图定位及大头针的基本使用
地图 Part1 - 定位及大头针的基本使用 一.MapKit 作用 : 用于地图展示 如大头针,路线,覆盖层展示等(着重界面展示) 使用步骤 导入头文件 #import <MapKit/Map ...
- iOS地图
地图 1.主要用到了地图展示和定位功能 CoreLocation框架的使用: 导入头文件 #import <CoreLocation/CoreLocation.h>CoreL ...
- iOS 地图坐标系之间的转换WGS-84世界标准坐标、GCJ-02中国国测局(火星坐标,高德地图)、BD-09百度坐标系转换
开发过程中遇到地图定位不准确,存在偏差.首先确认你获取到的坐标所在坐标系跟地图数据是不是相匹配的. 常用的地图SDK:高德地图使用的是GCJ-02(也就是火星坐标系),百度使用的是BD-09百度坐标系 ...
- iOS | 地图定位
在IOS开发中,最常见的功能之一就是地图定位功能,不单单是百度地图,高德地图等专业的地图导航软件,还有美团,咕咚等一些美食购物类和运动类也需要这样的功能,所以学会这项技能是一名IOS开发工程师必须的. ...
随机推荐
- MSSQL 和 REDIS的数据类型对应关系
when user_type_id in (34) then 'BLOB' --image when user_type_id in (35) then 'CLOB' --tex ...
- yii2整理
对于yii的研究,还没有那么深刻,之所以在这种情况下写,还是考虑到了后来入门人没有中文资料,而又无可下手的尴尬境地.希望对新手和我自己多一份帮助吧.总结几个自己的经验吧.环境的配置我就不做解释了.这个 ...
- .NET:序列化和反序列化
.NET:序列化和反序列化 需要反序列化的字符串: { "LouPanID": "sample string 1", "LouPanHao" ...
- 使用C#和.NET的原因
早在2000年6月,微软公布.NET之后不久,Ximian公司诞生了一个开源项目叫做Mono,运行在Linux环境下面的C#编译器和.NET Framework.十年后,在2011年,Ximian的创 ...
- DOM节点访问
简而言之,DOM(即文档对象模型)是一种将XML或HTML文档解析成树形节点的方法.通过DOM的方法与属性,我们就可以访问到页面中的任何元素,并进行元素的修改.删除以及添加的操作.同时,DOM也是一套 ...
- [HTML] CSS3 圆角
使用 CSS3 border-radius 属性,你可以给任何元素制作 "圆角". CSS3 border-radius 属性 使用 CSS3 border-radius 属性,你 ...
- 41. Unique Binary Search Trees && Unique Binary Search Trees II
Unique Binary Search Trees Given n, how many structurally unique BST's (binary search trees) that st ...
- 安卓:assets目录下的文本文件(不受R文件节制)
try { InputStream in = getAssets().open("testAsset.txt"); byte[] buffer = new byte[1024]; ...
- EXT学习之——EXT下拉框默认绑定第一个值
//默认第一个下拉框绑定值if (this.moduleCombo.store.getAt(0) != undefined) { this.moduleCombo.setValue(this.modu ...
- java se the operation is not applicable to the current selection
当新建某的类时,需要自动构建 set get方法时. 我们一般 会直接让Myeclipse自动生动.偶尔 .他会犯2. the operation is not applicable to the c ...