如何使用Mapkit(Swift)转到用户位置

时间:2015-07-11 19:24:29

标签: swift mapkit coordinates core-location

我是应用程序开发的新手,我一直在尝试创建一个应用程序,它将使用核心位置管理器查找用户位置,然后使用mapkit显示它。以下是我提出的代码。我还没有能够解决它,有谁知道我做错了什么?感谢。

//
//  ViewController.swift
//  MapKit Test
//
//  Created by TMT on 7/11/15.
//  Copyright (c) 2015 TMT Inc. All rights reserved.
//

import UIKit
import MapKit
import CoreLocation

class ViewController: UIViewController, MKMapViewDelegate, CLLocationManagerDelegate {

@IBOutlet weak var mapView: MKMapView!
override func viewDidLoad() {
    super.viewDidLoad()
    mapView.showsUserLocation = true
    mapView.showsPointsOfInterest = true
    mapView.delegate = self

  let locationManager = CLLocationManager()

  // Ask for Authorisation from the User.
  locationManager.requestAlwaysAuthorization()

  // For use in foreground
  locationManager.requestWhenInUseAuthorization()

  if CLLocationManager.locationServicesEnabled() {
     locationManager.delegate = self
     locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
     locationManager.startUpdatingLocation()
  }

  @NSCopying var location: CLLocation! { get }


  var span = MKCoordinateSpanMake(0.2
     , 0.2)

  var region = MKCoordinateRegion(center: location, span: span)

  mapView.setRegion(region, animated: true)


  var request = MKLocalSearchRequest()
  request.naturalLanguageQuery = "library"


            // Do any additional setup after loading the view, typically from a nib.
}

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


}

1 个答案:

答案 0 :(得分:0)

您没有处理位置/地图的委托方法。您的代码正在设置地图和位置框架以及委托方法。您已初始化它们并告诉编译器您想要使用mapkit / corelocation执行某些操作。所以现在你需要处理你所包含的委托方法MKMapViewDelegate, CLLocationManagerDelegate,并设置为self

将代理处理放在代码的某处

func locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!) {

    //Get map location
    let location = locations.last as! CLLocation
    let center = CLLocationCoordinate2D(latitude: location.coordinate.latitude, longitude: location.coordinate.longitude)
    let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01))
    self.mapView.setRegion(region, animated: true)

    //Get co ordinates
    CLGeocoder().reverseGeocodeLocation(manager.location, completionHandler: {(placemarks, error)->Void in

        if (error != nil) {
            println("Error: " + error.localizedDescription)
            return
        }

        if placemarks.count > 0 {
            let pm = placemarks[0] as! CLPlacemark
            self.displayLocationInfo(pm)
        } else {
            println("Error with the data.")
        }
    })
}
func displayLocationInfo(placemark: CLPlacemark) {

//Remove observer
self.locationManager.stopUpdatingLocation()

println(placemark.locality)
println(placemark.postalCode)
println(placemark.administrativeArea)
println(placemark.country)

}

func locationManager(manager: CLLocationManager!, didFailWithError error: NSError!) {
    println("Error: " + error.localizedDescription)
}