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系统,所有从系统稳定性上来说的确比其他操作 ...
随机推荐
- Yii学习笔记之中的一个(安装与基础环境的配置)
0. 下载yii http://www.yiiframework.com/download/ 1. 訪问 basic 基础文件夹下的 web 文件夹 出现图1 的错误 : Invalid Con ...
- java old GC和young GC
Java内存分配机制 摘自:http://www.cnblogs.com/zhguang/p/3257367.html 这里所说的内存分配,主要指的是在堆上的分配,一般的,对象的内存分配都是在堆上进行 ...
- SpringBoot项目部署
项目背景 个人博客:http://www.huangyichun.cn/blog/8 采用SpringBoot开发的个人博客,部署到腾讯云服务器上,服务器系统为ubuntu16.04, ...
- SQL 导出数据字典
用于参考: SELECT 表名=case when a.colorder=1 then d.name else '' end, 表说明=case w ...
- Spark的数据存储(十九)
Spark本身是基于内存计算的架构,数据的存储也主要分为内存和磁盘两个路径.Spark本身则根据存储位置.是否可序列化和副本数目这几个要素将数据存储分为多种存储级别.此外还可选择使用Tachyon来管 ...
- SQLiteHelp
using System; using System.Collections.Generic; using System.Text; using System.Data.SQLite; using S ...
- 洛谷P4015 运输问题(费用流)
题目描述 WW 公司有 mm 个仓库和 nn 个零售商店.第 ii 个仓库有 a_iai 个单位的货物:第 jj 个零售商店需要 b_jbj 个单位的货物. 货物供需平衡,即\sum\limits ...
- Java NIO(三)通道
概念 通道(Channel)由java.nio.channels包定义的.channel表示IO源与目标打开的连接,类似流,但不能直接访问数据,只能与Buffer进行交互 通道类似流,但又有不同: 既 ...
- JPush设置别名不走成功回调的解决办法
在参考了极光推送的文档之后,对个推(单个推送)有设置别名的方法,方法如下 [JPUSHService setTags:tags alias:alias fetchCompletionHandle:^( ...
- gcc编译c中有与lua交互的代码
编译C程序中有与Lua有关的程序(编译环境是Linux系统,lua解释器是luajit)gcc -o test30 test30.cpp -I/usr/local/include/luajit-2.0 ...