地图与定位之定位

今天开始总结一下地图与定位。首先要使用定位就要引用框架CoreLocation.framework,在类文件中加入#import <CoreLocation/CoreLocation.h>,其次在IOS8中调用的时候要在Info.plist中加两个Key,NSLocationAlwaysUsageDescription和NSLocationWhenInUseUsageDescription,具体参考http://www.cnblogs.com/kenshincui/p/4125570.html

#import "ViewController.h"
@interface ViewController ()<CLLocationManagerDelegate>
@property(nonatomic,strong)CLLocationManager *locationManager;
@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];_locationManager=[[CLLocationManager alloc]init];//判断定位服务是否可用BOOL enable= [CLLocationManager locationServicesEnabled];//   //CLAuthorizationStatus
//    typedef NS_ENUM(int, CLAuthorizationStatus) {
//    //用户尚未做出决定是否启用定位服务
//    kCLAuthorizationStatusNotDetermined = 0,
//    //没有获得用户授权使用定位服务,可能用户没有自己禁止访问授权
//    kCLAuthorizationStatusRestricted,
//    //用户已经明确禁止应用使用定位服务或者当前系统定位服务处于关闭状态
//    kCLAuthorizationStatusDenied,
//    //应用获得授权可以一直使用定位服务,即使应用不在使用状态
//    kCLAuthorizationStatusAuthorizedAlways NS_ENUM_AVAILABLE(NA, 8_0),
//    //使用此应用过程中允许访问定位服务
//    kCLAuthorizationStatusAuthorizedWhenInUse NS_ENUM_AVAILABLE(NA, 8_0),
//    //已经废弃
//    kCLAuthorizationStatusAuthorized NS_ENUM_DEPRECATED(10_6, NA, 2_0, 8_0, "Use kCLAuthorizationStatusAuthorizedAlways") = kCLAuthorizationStatusAuthorizedAlways
//};if ([CLLocationManager authorizationStatus]<3&&enable) {//请求开启服务[_locationManager requestWhenInUseAuthorization];// [_locationManager requestAlwaysAuthorization];}else{
//        _locationManager=[[CLLocationManager alloc]init];_locationManager.delegate=self;//        kCLLocationAccuracyBestForNavigation //导航级别
//        kCLLocationAccuracyBest;             //最精确定位
//        kCLLocationAccuracyNearestTenMeters; //十米级定位
//        kCLLocationAccuracyHundredMeters;    //百米级定位
//        kCLLocationAccuracyKilometer;        //千米级定位
//        kCLLocationAccuracyThreeKilometers;  //3千米级定位//设置精确度_locationManager.desiredAccuracy=kCLLocationAccuracyBest;//设置定位频率,每隔多少米定位一次CLLocationDistance distance=10.0;_locationManager.distanceFilter=distance;//开始定位跟踪,开始后按照用户设定的更新频率更新//(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;方法反馈定位信息[_locationManager startUpdatingLocation];if ([CLLocationManager headingAvailable]) {[_locationManager startUpdatingHeading];}}
}
//参数newHeading是一个CLHeading对象。CLHeading通过一组属性来提供航向读数:magneticHeading和trueHeading。这些值的单位为度,类型为CLLocationDirection,即双精度浮点数
- (void)locationManager:(CLLocationManager *)managerdidUpdateHeading:(CLHeading *)newHeading
{if(newHeading.headingAccuracy >=0){//trueHeading和magneticHeading分别表示真实航向和磁性航向。如果位置服务被关闭了,GPS和wifi就只能获取magneticHeading(磁场航向)。只有打开位置服务,才能获取trueHeading(真实航向)。NSString *headingDesc = [NSString stringWithFormat:@"%.0f degrees (true), %.0f degrees (magnetic)",newHeading.trueHeading,newHeading.magneticHeading];NSLog(@"%@",headingDesc);//关闭导航[_locationManager stopUpdatingHeading];}}
//指定位置管理器是否向用户显示校准提示。该提示将自动旋转设备360°。由于指南针总是自我校准,因此这种提示仅在指南针读数剧烈波动时才有帮助。当设置为YES后,提示可能会分散用户的注意力,或影响用户的当前操作
- (BOOL)locationManagerShouldDisplayHeadingCalibration:(CLLocationManager *)manager
{return YES;
}-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{//获取位置CLLocation *location=[locations lastObject];//获取二维坐标经纬度 结构体类型 不用*
//    typedef struct {
//        CLLocationDegrees latitude;
//        CLLocationDegrees longitude;
//    } CLLocationCoordinate2D;CLLocationCoordinate2D coordinate2D=location.coordinate;NSLog(@"\n经度:%lf\n纬度:%lf\n海拔:%lf\n航向:%lf\n速度:%lf\n位置精度(半径负值无效):%lf\n海拔精度(负值无效)%lf",coordinate2D.longitude,coordinate2D.latitude,location.altitude,location.course,location.speed,location.horizontalAccuracy,location.verticalAccuracy);//停止定位[_locationManager stopUpdatingLocation];}
//定位失败
-(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{NSLog(@"%ld",error.code);
//    error.code有以下枚举
//    typedef NS_ENUM(NSInteger, CLError) {
//        kCLErrorLocationUnknown  = 0,         // location is currently unknown, but CL will keep trying
//        kCLErrorDenied,                       // Access to location or ranging has been denied by the user
//        kCLErrorNetwork,                      // general, network-related error
//        kCLErrorHeadingFailure,               // heading could not be determined
//        kCLErrorRegionMonitoringDenied,       // Location region monitoring has been denied by the user
//        kCLErrorRegionMonitoringFailure,      // A registered region cannot be monitored
//        kCLErrorRegionMonitoringSetupDelayed, // CL could not immediately initialize region monitoring
//        kCLErrorRegionMonitoringResponseDelayed, // While events for this fence will be delivered, delivery will not occur immediately
//        kCLErrorGeocodeFoundNoResult,         // A geocode request yielded no result
//        kCLErrorGeocodeFoundPartialResult,    // A geocode request yielded a partial result
//        kCLErrorGeocodeCanceled,              // A geocode request was cancelled
//        kCLErrorDeferredFailed,               // Deferred mode failed
//        kCLErrorDeferredNotUpdatingLocation,  // Deferred mode failed because location updates disabled or paused
//        kCLErrorDeferredAccuracyTooLow,       // Deferred mode not supported for the requested accuracy
//        kCLErrorDeferredDistanceFiltered,     // Deferred mode does not support distance filters
//        kCLErrorDeferredCanceled,             // Deferred mode request canceled a previous request
//        kCLErrorRangingUnavailable,           // Ranging cannot be performed
//        kCLErrorRangingFailure,               // General ranging failure
//    };
}
- (void)didReceiveMemoryWarning {[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}@end

 

 还有就是在模拟器中调试的问题:可以选中模拟器的Debug——>Location 来定义经纬度

转载于:https://www.cnblogs.com/5ishare/p/4432346.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/398291.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

merge into ORA-30926

ORA-30926: 无法在源表中获得一组稳定的行 同时要求在一张表中添加一个字段&#xff0c;由于数据量较大&#xff0c;想使用merge into update的方式将数据 meger into xxx1 t1 using(select * from xxx2 )t2 on(t1.xmt2.xm and t1.dzt2.dz) when matched then update set tra…

rocketmq 如何保证高可用_RocketMq容灾、高可用方案

一、实现分布式集群多副本的三种方式1.1 M/S模式即Master/Slaver模式。该模式在过去使用的最多&#xff0c;RocketMq之前也是使用这样的主从模式来实现的。主从模式分为同步模式和异步模式&#xff0c;区别是在同步模式下只有主从复制完毕才会返回给客户端&#xff1b;而在异步…

Debian 9 strech 安装 ROS lunar

1. 配置源 按照我以前的博客配置或者按照wiki上的配置。 2. sudo sh -c echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list3. sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:…

谈Find指令

Linux下find命令在目录结构中搜索文件&#xff0c;并执行指定的操作。Linux下find命令提供了相当多的查找条件&#xff0c;功能很强大。由于find具有强大的功能&#xff0c;所以它的选项也很多&#xff0c;其中大部分选项都值得我们花时间来了解一下。即使系统中含有网络文件系…

数据库原理归档——对于数据库原理最全的总结

恭喜你来到新天地&#xff01; 以下的笔记是我复习了三次总结出来的&#xff0c;属于一个归档。目前还在对以往的知识做一个更加详细地总结&#xff0c;所以仍在更新中。这份笔记对于新手入门数据库来说十分友好&#xff0c;语言通俗易懂。在数据库中&#xff0c;还涉及到很多…

k8s部署tomcat及web应用_部署 Spring Boot 应用到 K8S 教程

点击上方 Java后端&#xff0c;选择 设为星标优质文章&#xff0c;及时送达作者&#xff1a;qingmuqingmu.io/2020/04/08/Spring-Boot-Operator-User-Guide/前言在Kubernetes中部署spring boot应用整体上来说是一件比较繁琐的事情&#xff0c;而Spring Boot Operator则能带给你…

Web性能优化分析

如果你的网站在1000ms内加载完成&#xff0c;那么会有平均一个用户停留下来。2014年&#xff0c;平均网页的大小是1.9MB。看下图了解更多统计信息。 直击现场 《HTML开发MacOSApp教程》 http://pan.baidu.com/s/1jG1Q58M 网站的核心内容需要在1000ms内呈现出来。如果失败了&a…

Ionic 自定义组件中使用 Ionic 官方组件

问题起因&#xff1a; 在项目目录中使用 ionic g component SearchBar 加入一个新的自定义组件并在 html 中插入代码&#xff1a; 1 <div> 2 <ion-searchbar 3 [(ngModel)]"myInput" 4 showCancelButton"true" 5 placeholder"…

scp构造端口_指定端口号的scp

指定端口号的scp我正在尝试将文件从远程服务器scp到我的本地计算机。 只有80端口可以访问。我试过了&#xff1a;scp -p 80 usernamewww.myserver.com:/root/file.txt .但得到了这个错误&#xff1a;cp: 80: No such file or directory如何在scp命令中指定端口号&#xff1f;On…

闭包/Block当成函数参数实现回调

2019独角兽企业重金招聘Python工程师标准>>> Swift // MARK:// MARK: 获取数据/// 获取数据class func toolLoadData(completion:(finish: String) -> ()? ,content: String) {self .nextStepRequest({ (finish) -> ()? in// 接收到数据 调用 block 传递数据…

利用find同时查找多种类型文件

find . -name "*.c" -o -name "*.cpp" -o -name "*.h" 就可以列出当前目录下面所有的c,cpp,h文件转载于:https://www.cnblogs.com/baizx/p/4438905.html

JS动态插入HTML后不能执行后续JQUERY操作

通过js追加的html 发现 不能点击 执行函数 普通绑定事件&#xff1a;$(.btn1).click(function(){}绑定 事件委托 解决方法&#xff1a; $("body").delegate(".class","click",function(){}); on绑定事件&#xff1a;$(document).on(click,.btn2,…

linux重装eclipse_Linux环境安装Eclipse工具开发

2、上传到虚拟机进行解压缩操作&#xff1a;[hadoopslaver1 package]$ tar -zxvf apache-maven-3.5.3-bin.tar.gz -C /home/hadoop/soft/3、配置Maven的环境变量&#xff1a;[hadoopslaver1 soft]$ sudo vim /etc/profileexport MAVEN_HOME/home/hadoop/soft/apache-maven-3.5.…

js中如何判断一个DOM对象是否存在?

<div id"div1"></div> if(!!document.getElementById("div1"))转载于:https://www.cnblogs.com/AmayaWang/p/5528320.html

使用labview读取一副位图,并进行BCG校准(或修改其BCG)程序解析

进行图像处理第一步肯定就是要读取一副图片&#xff0c;然后再进行图像的BCG校准。 首先讲解一下用到的函数第一个函数为IMAQ Create&#xff0c;位于 视觉与运动--Vision Utilities---Image Management---IMAQ create 函数如图&#xff0c;对于如何看函数功能&#xff0c;还是…

实现生成小学四则运算练习题

实现小学四则运算练习题 1.题目要求 本次作业要求两个人合作完成&#xff0c;驾驶员和导航员角色自定&#xff0c;鼓励大家在工作期间角色随时互换&#xff0c;这里会布置两个题目&#xff0c;请各组成员根据自己的爱好任选一题。 题目1&#xff1a; 我们在刚开始上课的时候介绍…

交换机组播风暴_广播风暴的成因以及解决办法有哪些?

广播风暴就是因为以太网中出现了明环或暗环&#xff0c;引起广播包被指数涨速递增&#xff0c;整个网络流量被广播包占据&#xff0c;其他的转发业务不能进行。以太交换机对广播包的处理&#xff0c;是不管从哪个端口收到广播包&#xff0c;都完整地复制一份转发到其他端口(除接…

inotify用法简介及结合rsync实现主机间的文件实时同步

一、inotify简介 inotify是Linux内核2.6.13 (June 18, 2005)版本新增的一个子系统&#xff08;API&#xff09;&#xff0c;它提供了一种监控文件系统&#xff08;基于inode的&#xff09;事件的机制&#xff0c;可以监控文件系统的变化如文件修改、新增、删除等&#xff0c;并…

[转] 64位windows下添加postgreSQL odbc数据源

系统环境&#xff1a;windows7 64位 postgreSQL9.0&#xff08;64bit)ps&#xff1a;安装postgreSQL时确定安装了odbc驱动。问题&#xff1a;点击“开始-》控制面板-》管理工具-》数据源&#xff08;ODBC&#xff09;-》用户DSN-》添加”&#xff0c;未出现postgreSQL关联选项。…

Mysql ---Sqlserver数据迁移到Mysql(Mysql建表迁移数据)

1 试用了MysqlWorkBench的数据迁移功能 以为能实现&#xff1a;建立跟Sqlserver一样的表结构和视图的功能&#xff0c;sqlserver的数据迁移到mysql 实际上发现&#xff1a;即使勾选了表和视图&#xff0c;实际上却只能建立表结构。 视图结构&#xff0c;表数据&#xff0c;都没…