iOS 系统地图实现及定位
1:加入库CoreLocation.framework,MApKit.framework;
2:@property (nonatomic, strong) CLLocationManager *locationManager;
@property (nonatomic, strong) MKMapView *mapView;
@property (nonatomic, strong) CLLocation *checkinLocation;
@property (strong, nonatomic) NSString *currentLatitude; //纬度
@property (strong, nonatomic) NSString *currentLongitude; //经度
- (void)viewDidLoad {
[super viewDidLoad];
self.title=@"地图";
[self initRightBarButton];
[self setupLocationManager];
[self setupMapView];
}
-(void)initRightBarButton{
UIButton* _btnRight = [UIButton buttonWithType:UIButtonTypeCustom];
[_btnRight setFrame:CGRectMake(0, 0, 39, 34)];
UIImage *imgNormal = [UIImage imageNamed:@"gpsbtn_dianji"];
UIImage *imgSelect = [UIImage imageNamed:@"gpsbtn"];
[_btnRight setBackgroundImage:imgNormal forState:UIControlStateNormal];
[_btnRight setBackgroundImage:imgSelect forState:UIControlStateSelected];
_btnRight.showsTouchWhenHighlighted = YES;
[_btnRight addTarget:self action:@selector(showUserLocation:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:_btnRight];
self.navigationItem.rightBarButtonItem = buttonItem;
}
- (void)setupLocationManager{
_locationManager=[[CLLocationManager alloc]init];
_locationManager.desiredAccuracy=kCLLocationAccuracyBestForNavigation;
//每隔多少米定位一次(这里的设置为不论什么的移动)
_locationManager.distanceFilter=kCLDistanceFilterNone;
//iOS 8.0以后
if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
[self.locationManager requestWhenInUseAuthorization];
[self.locationManager startUpdatingLocation];
}
}
- (void)setupMapView{
_mapView=[[MKMapView alloc]initWithFrame:self.view.bounds];
[self.view addSubview:_mapView];
_mapView.delegate=self;
//用户位置追踪(用户位置追踪用于标记用户当前位置,此时会调用定位服务)
_mapView.userTrackingMode=MKUserTrackingModeFollowWithHeading;
_mapView.mapType=MKMapTypeStandard;
[self initLocationData];
}
- (void)initLocationData{
NSMutableArray *arr=[[NSMutableArray alloc]init];
for (int i=0; i<1; i++) {
CLLocationDegrees lat=[self.currentLatitude doubleValue];
CLLocationDegrees longi=[self.currentLongitude doubleValue];
NSString *lacationName=@"当前位置";
BasicMapAnnotation *anno=[[BasicMapAnnotation alloc]initWithLatitude:lat andLongitude:longi];
anno.title=lacationName;
anno.index=i;
[arr addObject:anno];
}
[_mapView showAnnotations:arr animated:YES];
}
- (void)showUserLocation:(id)sender{
MKCoordinateSpan span=MKCoordinateSpanMake(0.01, 0.02);
MKCoordinateRegion region=MKCoordinateRegionMake(_mapView.userLocation.coordinate, span);
[_mapView setRegion:region animated:YES];
}
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation{
NSLog(@"纬度:%f 经度:%f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);
self.currentLatitude = [NSString stringWithFormat:@"%.4f",userLocation.location.coordinate.latitude];
self.currentLongitude = [NSString stringWithFormat:@"%.4f",userLocation.location.coordinate.longitude];
[self initLocationData];
//设置地图显示范围(假设不进行区域设置会自己主动显示区域范围并指定当前用户位置为地图中心点)
//MKCoordinateSpan span=MKCoordinateSpanMake(0.01, 0.01);
//MKCoordinateRegion region=MKCoordinateRegionMake(_mapView.region.center, span);
//[_mapView setRegion:region animated:true];
}
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation{
if ([annotation isKindOfClass:[BasicMapAnnotation class]]) {
static NSString *key=@"AnnotationKey";
MKAnnotationView *annotationView=[_mapView dequeueReusableAnnotationViewWithIdentifier:key];
BasicMapAnnotation *aa=(BasicMapAnnotation *)annotation;
if (!annotationView) {
annotationView=[[MKAnnotationView alloc]initWithAnnotation:aa reuseIdentifier:key];
CGRect frame=annotationView.frame;
frame.size.width=14;
frame.size.height=35;
annotationView.frame=frame;
annotationView.canShowCallout=YES;
UIImageView*imageview=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"地图标注"]];
imageview.frame=frame;
[annotationView addSubview:imageview];
}
return annotationView;
}
return nil;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
iOS 系统地图实现及定位的更多相关文章
- iOS开发----地图与导航--定位和位置信息获取
要实现地图.导航功能,往往需要先熟悉定位功能,在iOS中通过Core Location框架进行定位操作.Core Location自身可以单独使用,和地图开发框架MapKit完全是独立的,但是往往地图 ...
- IOS系统唤醒微信内置地图
针对前一篇文章 唤醒微信内置地图 后来发现在IOS系统中运行 唤醒地图会无效的问题.因为在IOS上无法解析这俩个字符串的问题! 需要对经纬度 使用 “parseFloat()”进行转换 返回一个浮点数 ...
- 检测iOS系统的定位服务
[CLLocationManager locationServicesEnabled]检测的是整个iOS系统的位置服务开关
- iOS 系统架构
https://developer.apple.com/library/ios/documentation/Miscellaneous/Conceptual/iPhoneOSTechOverview/ ...
- iOS原生地图开发详解
在上一篇博客中:http://my.oschina.net/u/2340880/blog/414760.对iOS中的定位服务进行了详细的介绍与参数说明,在开发中,地位服务往往与地图框架结合使用,这篇博 ...
- IOS系统框架
IOS系统框架:ios架构号MAC OS的基础框架相似:ios扮演底层硬件和应用程序的中介,底层为所有应用程序提供基础服务,高层则包含一些复杂巧妙的技术和服务,并且创建的应用程序不能直接访问硬件. C ...
- 苹果iOS系统下检查第三方APP是否安装及跳转启动
在iOS系统,使用Url Scheme框架在APP间互相跳转和传递数据,本文只介绍如果检测和跳转. Url Scheme框架 如果你想知道ios设备中是否安装QQ这个软件,我们可以通过一个简单方法判断 ...
- iOS系统层次架构
本文转自:http://blog.csdn.net/lxl_815520/article/details/51172917 一,概述 iOS的系统架构分为四个层次:核心操作系统层(Core OS la ...
- 认识iOS系统架构
关于本文: 文章主要介绍iOS系统架构中的四层结构的内容.常用的框架.大致的功能,然后对iOS开发人员的发展提出自己的一些拙见. 一.iOS系统是基于UNIX系统,所有从系统稳定性上来说的确比其他操作 ...
随机推荐
- hdu4870 Rating (高斯消元或者dp)
Rating Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submi ...
- Spring容器装饰者模式应用之实现业务类与服务类自由组合的解决方式
在不论什么一个项目中都不可或缺的存在两种bean,一种是实现系统核心功能的bean,我们称之为业务类,第二种是与系统核心业务无关但同一时候又提供十分重要服务bean,我们称之为服务类.业务类的bean ...
- 2015.05.11,外语,读书笔记-《Word Power Made Easy》 15 “如何谈论事情进展” SESSION 44
1. not the real McCoy simulate(['simjuleit] v. 假装,冒充,模仿,模拟)来自拉丁simulo,copy的意思.simulo本身派生自拉丁形容词simili ...
- [jzoj 5661] 药香沁鼻 解题报告 (DP+dfs序)
interlinkage: https://jzoj.net/senior/#contest/show/2703/0 description: solution: 注意到这本质就是一个背包,只是选了一 ...
- BZOJ 1989 概率相关
思路: 一条边免费的概率为 (经过它的路/总路径条数)^2 DFS即可 有个地方没有用 long long炸了好久- //By SiriusRen #include <cstdio> us ...
- struts2学习之基础笔记5
第十章 Struts 2的输入校验 1 Struts 2 输入校验原理 a . 分类 validate()方法校验 b . validation框架校验 2 valibate()方法校验实现 步骤 ...
- 微信小程序,canvas绘图,样式错乱
问题1:文字样式错乱 使用以下方式分模块绘制, ctx.save()//...ctx.restore() 绘制完后,定时500毫秒再保存图片 ctx.draw(false, () => { se ...
- Sphinx在windows下安装使用[支持中文全文检索]
原文地址:http://www.fuchaoqun.com/2008/11/sphinx-on-windows-xp/ 前 一阵子尝试使用了一下Sphinx,一个能够被各种语言(PHP/Python/ ...
- JS判断客户端是否是iOS或者Android或者ipad(三)
* * @function: 判断浏览器类型是否是Safari.Firefox.ie.chrome浏览器 * @return: true或false * */ function isSafa ...
- 使用node+mysql进行后端开发
使用koa: koa2是一个类,所以引入koa后,要创建实例化“对象”,才能使用koa内部封装的方法. 设置监听端口: 处理http请求: 1.http请求处理链 A.通过app.use()注册asy ...