iOS开发 - 使用CoreLocation 定位

作者: 小黑Swift | 来源:发表于2016-07-15 14:27 被阅读272次

CoreLocation是🍎提供的一个定位框架。通过这个框架可以获取 经纬度、海拔、指向、速度等信息。

CoreLocation
Info.plist
import UIKit
import CoreLocation

class ViewController: UIViewController, CLLocationManagerDelegate {
    
    @IBOutlet weak var tableView: UITableView!
    
    //定位管理者
    let locationManager = CLLocationManager()
    
    var myLocation:[String] = [] {
        didSet {
            tableView.reloadData()
        }
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyBest //精度
        locationManager.distanceFilter = 10 //更新距离
        locationManager.requestAlwaysAuthorization() //发送授权申请
        if CLLocationManager.locationServicesEnabled() {
            //允许使用定位服务的话,开启定位服务更新
            locationManager.startUpdatingLocation()
            print("定位开始")
        }
        
        tableView.delegate = self
        tableView.dataSource = self
    }
    
    //定位改变执行,更新信息
    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        
        //获取最新的坐标
        guard let currLocation = locations.last else {
            return print("没有找到位置")
        }
        
        let label1 = "经度:\(currLocation.coordinate.longitude.keepTwo)"
        let label2 = "纬度:\(currLocation.coordinate.latitude.keepTwo)"
        let label3 = "海拔:\(currLocation.altitude.keepTwo)"
        let label4 = "水平精度:\(currLocation.horizontalAccuracy.keepTwo)"
        let label5 = "垂直精度:\(currLocation.verticalAccuracy.keepTwo)"
        let label6 = "方向:\(currLocation.course)"
        let label7 = "速度:\(currLocation.speed)"
        
        myLocation = [label1,label2,label3,label4,label5,label6,label7]
    }
}

extension ViewController: UITableViewDelegate,UITableViewDataSource {
    
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return myLocation.count
    }
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("myCell", forIndexPath: indexPath)
        cell.textLabel?.text = myLocation[indexPath.row]
        
        return cell
    }
}

extension Double {
    // 保留2位有效数字
    var keepTwo:String {
        return NSString(format: "%.2f", self) as String
    }
}

/*
 定位服务管理类CLLocationManager的desiredAccuracy属性表示精准度,有如下6种选择:
 kCLLocationAccuracyBestForNavigation :精度最高,一般用于导航
 kCLLocationAccuracyBest : 精确度最佳
 kCLLocationAccuracyNearestTenMeters :精确度10m以内
 kCLLocationAccuracyHundredMeters :精确度100m以内
 kCLLocationAccuracyKilometer :精确度1000m以内
 kCLLocationAccuracyThreeKilometers :精确度3000m以内
 */

相关文章

  • 百度地图之定位

    iOS中三种定位方式 ioS开发之CoreLocation(GPS定位) iOS自带的GPS 定位 iOS开发 C...

  • CoreLocation使用问题

    iOS8中使用CoreLocation定位

  • IOS(swift)获取用户定位及坐标转换

    前言 IOS开发中经常会需要使用定位的功能,主要使用的是CoreLocation.framework。 具体使用 ...

  • iOS CoreLocation 定位实现

    CoreLocation 定位 iOS 地图 反编码 CoreLocation 实现基于 8.0 之后的使用方法,...

  • iOS开发 - 使用CoreLocation 定位

    CoreLocation是?提供的一个定位框架。通过这个框架可以获取 经纬度、海拔、指向、速度等信息。 ① ②

  • 关于地图定位

    CoreLocation框架 一. iOS8.0之前的定位(✨✨✨✨✨) 前台定位导入CoreLocation框架...

  • iOS中的定位功能

    iOS中的定位功能 CoreLocation框架(CoreLocation.framework)可用于定位设备当前...

  • CLLocationManager

    1、定位 使用CoreLocation框架 2、IOS8、IOS9之后的改变 IOS8之后添加的功能 (1)定位服...

  • CoreLocation定位

    定位 -在iOS开发中想要加入定位和地图功能,那么必须基于CoreLocation和MapKit2个框架进行开发-...

  • IOS-GPS定位

    一.介绍 1.定位使用的是: CoreLocation 框架 2. ios8 ios9之后的定位的改变 1⃣️...

网友评论

    本文标题:iOS开发 - 使用CoreLocation 定位

    本文链接:https://www.haomeiwen.com/subject/eveyjttx.html