Swift 获取地理位置信息 经纬度以及其他详细位置信息

2018-01-14  本文已影响210人  小伟Five
//地理位置编码
let locationManager = CLLocationManager()

    //地理位置代码
    locationManager.delegate = self //代理CLLocationManagerDelegate
    locationManager.requestAlwaysAuthorization()
    locationManager.startUpdatingLocation()  


func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    locationManager.stopUpdatingLocation()
    let changeLocation:NSArray =  locations as NSArray
    let currentLocation = changeLocation.lastObject as! CLLocation
    let geoCoder = CLGeocoder()
    geoCoder.reverseGeocodeLocation(currentLocation) { (placemarks, error) in
        if((placemarks?.count)! > 0){
            let placeMark = placemarks?.first
            if let currentCity = placeMark?.locality {
                print("=============\(currentCity)")
            }
            print(placeMark?.country ?? "")
            print(placeMark?.thoroughfare ?? "")
            print(placeMark?.name ?? "")
            print(placeMark?.subLocality ?? "")
            
        }else if (error == nil && placemarks?.count == 0){
            print("没有地址返回");
        }
        else if ((error) != nil){
            print("location error\(String(describing: error))");
        }
    }
}
老铁们 别忘了添加地理位置权限......
上一篇下一篇

猜你喜欢

热点阅读