美文网首页
地图定位

地图定位

作者: 老韩在简书 | 来源:发表于2016-09-19 20:29 被阅读0次
import UIKit
import MapKit
class ViewController: UIViewController, CLLocationManagerDelegate, MKMapViewDelegate {

   
    let locateMannage:CLLocationManager = CLLocationManager()
    var btn:UIButton = UIButton(type: .System)
    var mapView:MKMapView = MKMapView()
    var currentCoordinate:CLLocationCoordinate2D?
    override func viewDidLoad() {
        super.viewDidLoad()
        
        // 添加地图视图
        mapView = MKMapView.init(frame: self.view.frame)
        mapView.mapType = MKMapType.Standard
        
        //mapView.scaleOrigin = CGPointMake(100, mapView.frame.size.height-20)
        
        self.view.addSubview(mapView)
        
        // 按钮
        btn.frame = CGRectMake(10, 30, 100, 50)
        btn.setTitle("定位", forState: .Normal)
        btn.addTarget(self, action: "setLocation:", forControlEvents: .TouchUpInside)
        self.view.addSubview(btn)
        
        self.locateMannage.delegate = self
        // 发送授权
        if self.locateMannage.respondsToSelector(Selector("requestAlwaysAuthorization")) {
            self.locateMannage.requestAlwaysAuthorization()
        }
        // 精度
        self.locateMannage.desiredAccuracy = kCLLocationAccuracyBest
        // 更新距离
        locateMannage.distanceFilter = 100
        // 开启更新位置服务
        //self.locateMannage.startUpdatingHeading()
        
        
    }

    
    // CLLocationManager代理方法
    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        // 获取最后的位置信息
        self.locateMannage.stopUpdatingHeading()
        let newLocation:CLLocation = locations.last!
        // 设置大小(经纬度)1纬度约等于111千米
        let currentLocationSpan:MKCoordinateSpan = MKCoordinateSpanMake(0.03, 0.03)
        let currentRegion:MKCoordinateRegion = MKCoordinateRegion(center: newLocation.coordinate, span: currentLocationSpan)
        self.mapView.setRegion(currentRegion, animated: true)
                
        
        // 反编码
        CLGeocoder().reverseGeocodeLocation(newLocation, completionHandler: { (pms, err) -> Void in
            
                //取得最后一个地标,地标中存储了详细的地址信息,注意:一个地名可能搜索出多个地址
                let placemark:CLPlacemark = (pms!.last)!
                self.currentCoordinate = placemark.location?.coordinate
                let location = placemark.location;//位置
                let region = placemark.region;//区域
                let addressDic = placemark.addressDictionary;//详细地址信息字典,包含以下部分信息
//                let name=placemark.name;//地名  广汇花苑
//                let thoroughfare=placemark.thoroughfare;//街道 ---斜土路
//                let subThoroughfare=placemark.subThoroughfare; //街道相关信息,例如门牌等   ---1981号
//                let locality=placemark.locality; // 城市   ---上海市
//                let subLocality=placemark.subLocality; // 城市相关信息,例如标志性建筑 ----徐汇区
//                let administrativeArea=placemark.administrativeArea; // 行政管理区域   ----上海市
//                let subAdministrativeArea=placemark.subAdministrativeArea; //其他行政区域信息  ---nil(因该是xxx省xxx市)
//                let postalCode=placemark.postalCode; //邮编
//                let ISOcountryCode=placemark.ISOcountryCode; //国家编码   CN
//                let country=placemark.country; //国家
//                let inlandWater=placemark.inlandWater; //水源、湖泊
//                let ocean=placemark.ocean; // 海洋
//                let areasOfInterest=placemark.areasOfInterest; //关联的或利益相关的地标
//                    name =  "中国河南省郑州市管城回族区北下街街道东太康路25号";
//
//                    administrativeArea = "河南省";
//                    country = "中国";
//                    countryCode = CN; -- ISOcountryCode
//                    locality = "郑州市";
//                    subLocality = "管城回族区";
//                    subThoroughfare = "25号";
//                    thoroughfare = "东太康路";
//                    timezone =                             {
//                        identifier = "Asia/Shanghai";
//                    };
            
            print(region)
            print("====\(addressDic)")
            
            // 添加大头针
            //创建一个大头针对象
            let bigPin = MKPointAnnotation()
            //设置大头针的显示位置
            bigPin.coordinate = location!.coordinate
            //设置点击大头针之后显示的标题
            bigPin.title = "\(placemark.locality)--\(placemark.subLocality)"
            //设置点击大头针之后显示的描述
            bigPin.subtitle = "\(placemark.thoroughfare)--\(placemark.subThoroughfare)"

            //添加大头针
            self.mapView.addAnnotation(bigPin)
        })
        print("经纬度\(newLocation.coordinate.longitude)====\(newLocation.coordinate.latitude)")
        
    }
    
    
     func setLocation(sender: UIButton) {
//        if self.currentCoordinate != nil {
//            self.mapView.setCenterCoordinate(self.currentCoordinate!, animated: true)
//        }
        
        self.locateMannage.startUpdatingLocation()
        mapView.showsUserLocation = true
        print("点击定位")
        // 编码
        CLGeocoder().geocodeAddressString("中国河南省郑州市金水区") { (pms, err) -> Void in
            let placemark:CLPlacemark = (pms?.last)!
            print(placemark.location!)
        }
    }
    
    
    

    
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

}

相关文章

  • 基于fabric的地图定位,SVG热力地图

    基于fabric的地图定位,SVG热力地图 基于fabric的地图定位,SVG热力地图 基于 fabricjs v...

  • 地图定位的不显示

    苹果自带地图定位功能 地图定位 今天要做苹果自带地图定位功能,基于mapkit框架的。怎么也没有找到定位自己的位置...

  • iOS地图和定位

    iOS地图定位 本文发布在http://he8090.cn/2016/07/18/地图与定位/ 导入地图框架 1、...

  • IOS地图定位导航

    title : IOS地图定位导航category : UI 地图定位导航 标签(空格分隔): IOS 概述 I...

  • 地图显示踩坑

    问题一:为什么定位点不在地图正中间? 应该先显示地图div,再画地图画地图时,先获取当前定位的坐标,再画地图 问题...

  • 地图与定位

    OCiOS开发:地图与定位 - 李鴻耀 - 博客频道 - CSDN.NET iOS开发之地图-定位/...

  • 高德地图,获取定位的过程中已经打开权限还是提示没有权限

    使用高德地图,获取定位的过程中,出现以下问题: //地图错误: [ #OnLocationChanged ] 定位...

  • 地图定位

    这个功能主要实现的实时定位 1.注意点 info.plist添加两个文件 2.实现代码

  • 地图定位

    定位使用 " CoreLocation 框架 想要定位,需要使用5个步骤 1.首先创建一个"强引用"的位置管理器C...

  • 地图定位

    #import #import { //定义变量地图视图...

网友评论

      本文标题:地图定位

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