服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

香港云服务器
服务器之家 - 编程语言 - IOS - 在iOS App中实现地理位置定位的基本方法解析

在iOS App中实现地理位置定位的基本方法解析

2021-01-19 15:11李刚 IOS

这篇文章主要介绍了在iOS App中实现地理位置定位的基本方法解析,包括获取当前位置和计算两点间距离等基本功能的实现,需要的朋友可以参考下

ios系统自带的定位服务可以实现很多需求。比如:获取当前经纬度,获取当前位置信息等等。
其定位有3种方式:
1,gps,最精确的定位方式
2,蜂窝基站三角定位,这种定位在信号基站比较秘籍的城市比较准确。
3,wifi,这种方式貌似是通过网络运营商的数据库得到的数据,在3种定位种最不精确

首先你要在你的xcode中添加两个连接库,mapkit和corelocation,如图

在iOS App中实现地理位置定位的基本方法解析

core location提供了定位功能,能定位装置的当前坐标,同时能得到装置移动信息,最重要的类是cllocationmanager,定位管理。
ios8开始,core location framework的变化主要有以下几点:
1. 在定位状态中引入always 和wheninuse的概念。
2. 加入visit monitoring的特性, 这类特性特别适合旅行类别的应用,当用户到达某个指定的区域内,monitor开始作用。
3.加入室内定位技术,增加clfloor, 在室内可以得到楼层信息。

获取当前经纬度

首先导入#import <corelocation/corelocation.h>,定义cllocationmanager的实例,实现cllocationmanagerdelegate。

复制代码 代码如下:


@interface viewcontroller ()<cllocationmanagerdelegate>
{
    cllocationmanager *_locationmanager;
}

 

@end


开始定位的方法:

复制代码 代码如下:

- (void)startlocating
{
    if([cllocationmanager locationservicesenabled])
    {
        _locationmanager = [[cllocationmanager alloc] init];
        //设置定位的精度
        [_locationmanager setdesiredaccuracy:kcllocationaccuracybest];
        _locationmanager.distancefilter = 100.0f;
        _locationmanager.delegate = self;
        if ([[[uidevice currentdevice] systemversion] floatvalue] > 8.0)
        {
            [_locationmanager requestalwaysauthorization];
            [_locationmanager requestwheninuseauthorization];
        }
        //开始实时定位
        [_locationmanager startupdatinglocation];
    }
}


实现代理方法:

复制代码 代码如下:

-(void)locationmanager:(cllocationmanager *)manager didchangeauthorizationstatus:(clauthorizationstatus)status
{
    nslog(@"longitude = %f", manager.location.coordinate.longitude);
    nslog(@"latitude = %f", manager.location.coordinate.latitude);
    [_locationmanager stopupdatinglocation];
}


获取当前位置信息

 

在上面的代理方法中

复制代码 代码如下:


-(void)locationmanager:(cllocationmanager *)manager didchangeauthorizationstatus:(clauthorizationstatus)status
{
    nslog(@"longitude = %f", manager.location.coordinate.longitude);
    nslog(@"latitude = %f", manager.location.coordinate.latitude);
    [_locationmanager stopupdatinglocation];

 

    clgeocoder * geocoder = [[clgeocoder alloc] init];
    [geocoder reversegeocodelocation:manager.location completionhandler:^(nsarray *placemarks, nserror *error) {
        for (clplacemark * placemark in placemarks) {
            nsdictionary *test = [placemark addressdictionary];
            //  country(国家)  state(城市)  sublocality(区)
            nslog(@"%@", [test objectforkey:@"country"]);
            nslog(@"%@", [test objectforkey:@"state"]);
            nslog(@"%@", [test objectforkey:@"sublocality"]);
            nslog(@"%@", [test objectforkey:@"street"]);
        }
    }];

}


这样就很简单获取了当前位置的详细信息。

 

获取某一个地点的经纬度

复制代码 代码如下:

- (void)getlongitudeandlatitudewithcity:(nsstring *)city
{
    //city可以为中文
    nsstring *oreillyaddress = city;
    clgeocoder *mygeocoder = [[clgeocoder alloc] init];
    [mygeocoder geocodeaddressstring:oreillyaddress completionhandler:^(nsarray *placemarks, nserror *error) {
        if ([placemarks count] > 0 && error == nil)
        {
            nslog(@"found %lu placemark(s).", (unsigned long)[placemarks count]);
            clplacemark *firstplacemark = [placemarks objectatindex:0];
            nslog(@"longitude = %f", firstplacemark.location.coordinate.longitude);
            nslog(@"latitude = %f", firstplacemark.location.coordinate.latitude);
        }
        else if ([placemarks count] == 0 && error == nil)
        {
            nslog(@"found no placemarks.");
        }
        else if (error != nil)
        {
            nslog(@"an error occurred = %@", error);
        }
    }];
}


计算两个地点之间的距离

复制代码 代码如下:

- (double)distancebylongitude:(double)longitude1 latitude:(double)latitude1 longitude:(double)longitude2 latitude:(double)latitude2{
    cllocation* curlocation = [[cllocation alloc] initwithlatitude:latitude1 longitude:longitude1];
    cllocation* otherlocation = [[cllocation alloc] initwithlatitude:latitude2 longitude:longitude2];
    double distance  = [curlocation distancefromlocation:otherlocation];//单位是m
    return distance;
}


首先我们可以用上面的getlongitudeandlatitudewithcity方法获取某一个地点的经纬度。比如我们获取北京和上海的经纬度分别为:北京longitude = 116.405285,latitude = 39.904989 上海longitude = 121.472644, latitude = 31.231706, 那么北京和上海之间的距离就是:

复制代码 代码如下:

double distance = [self distancebylongitude:116.405285 latitude:39.904989 longitude:121.472644 latitude:31.231706];
nslog(@"latitude = %f", distance);


计算的是大概的距离,可能没有那么精准。输入结果为:

 

?
1
distance = 1066449.749194

 

延伸 · 阅读

精彩推荐
  • IOSiOS中UILabel实现长按复制功能实例代码

    iOS中UILabel实现长按复制功能实例代码

    在iOS开发过程中,有时候会用到UILabel展示的内容,那么就设计到点击UILabel复制它上面展示的内容的功能,也就是Label长按复制功能,下面这篇文章主要给大...

    devilx12792021-04-02
  • IOSiOS自定义UICollectionViewFlowLayout实现图片浏览效果

    iOS自定义UICollectionViewFlowLayout实现图片浏览效果

    这篇文章主要介绍了iOS自定义UICollectionViewFlowLayout实现图片浏览效果的相关资料,需要的朋友可以参考下...

    jiangamh8882021-01-11
  • IOSiOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)

    iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和

    这篇文章主要介绍了iOS中滑动控制屏幕亮度和系统音量(附加AVAudioPlayer基本用法和Masonry简单使用)的相关资料,需要的朋友可以参考下...

    CodingFire13652021-02-26
  • IOSiOS开发技巧之状态栏字体颜色的设置方法

    iOS开发技巧之状态栏字体颜色的设置方法

    有时候我们需要根据不同的背景修改状态栏字体的颜色,下面这篇文章主要给大家介绍了关于iOS开发技巧之状态栏字体颜色的设置方法,文中通过示例代码...

    梦想家-mxj8922021-05-10
  • IOSiOS开发之视图切换

    iOS开发之视图切换

    在iOS开发中视图的切换是很频繁的,独立的视图应用在实际开发过程中并不常见,除非你的应用足够简单。在iOS开发中常用的视图切换有三种,今天我们将...

    执着丶执念5272021-01-16
  • IOS详解iOS中多个网络请求的同步问题总结

    详解iOS中多个网络请求的同步问题总结

    这篇文章主要介绍了详解iOS中多个网络请求的同步问题总结,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    liang199111302021-03-15
  • IOSiOS实现控制屏幕常亮不变暗的方法示例

    iOS实现控制屏幕常亮不变暗的方法示例

    最近在工作中遇到了要将iOS屏幕保持常亮的需求,所以下面这篇文章主要给大家介绍了关于利用iOS如何实现控制屏幕常亮不变暗的方法,文中给出了详细的...

    随风13332021-04-02
  • IOSiOS中MD5加密算法的介绍和使用

    iOS中MD5加密算法的介绍和使用

    MD5加密是最常用的加密方法之一,是从一段字符串中通过相应特征生成一段32位的数字字母混合码。对输入信息生成唯一的128位散列值(32个字符)。这篇文...

    LYSNote5432021-02-04
1338