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系统,所有从系统稳定性上来说的确比其他操作 ...
随机推荐
- 高速排序(Java版)
package com.love.test; import java.util.Scanner; /** * @author huowolf *高速排序实现 *快排是十分优秀的排序算法. *核心:分治 ...
- Java RTTI(类型信息)(.class 类对象)
RTTI:Run-Time Type Information,关键词在 Run-Time,运行时的,而非编译期确定的关于类型的信息.运行时的类型信息(RunTime Type Information) ...
- 利用JDBC或者事物或者调用存储过程实现往MySQL插入百万级数据
转自:http://www.cnblogs.com/fnz0/p/5713102.html 想往某个表中插入几百万条数据做下测试, 原先的想法,直接写个循环10W次随便插入点数据试试吧,好吧,我真的很 ...
- Git+VS2015修改提交代码以及解决冲突
第一步:前提我们已经讲代码从git上clone(可以看我的GIt篇)下来,创建自己的开发分支.我们在自己本地的分支上开发. 看到右下角有一个develop那是我自己建立的开发的分支,现在点击devel ...
- HTML5音频可视化频谱跳动代码
今天学习到用canvas来写 HTML5音频可视化频谱跳动代码 将代码在此做一总结: <!DOCTYPE html> <html lang="en"> ...
- c# ExecuteScalar()
ExecuteScalar这个方法是从数据库中检索单个值返回值是object类型,必须用与它在数据库里存放的类型相同类型或者可以转换成的类型,比如数据是nchar类型值为 "123" ...
- Redis安装到Windows系统
redis官方没有windows版本,在windows下安装需要单独去找.地址:https://github.com/MSOpenTech/redis/releases.本文用的是Redis-x64- ...
- 《鸟哥的Linux私房菜》笔记——04. 简单命令行
键入命令 [dmtsai@study ~]$ command [-options] parameter1 parameter2 ... 指令 選項 參數(1) 參數(2) 注意:有时也可以使用 + 放 ...
- java导出html页面
http://blog.csdn.net/zhyh1986/article/details/8727523#t6 http://blog.csdn.net/zuozuofuwaiwai/article ...
- 路飞学城Python-Day19(practise)
# 特性1.继承:2.多态:3.封装 # 1.继承的用处:通过继承就可以解决类与类之间的代码冗余关系 # 2.多态的用处:1.增加了程序的灵活性,以不变应万变,使用者都是同一种形式去调用(func(a ...