Невозможно найти местоположение пользователя на карте в swift xcode 7.1

Я пытаюсь получить точное местоположение пользователя на карте, но я получил только название города, а не точное местоположение. Вот код

import UIKit
import MapKit
import CoreLocation

class ViewController: UIViewController, MKMapViewDelegate, CLLocationManagerDelegate
{
@IBOutlet weak var mapView: MKMapView!

let locationManager = CLLocationManager()

override func viewDidLoad()
{
    super.viewDidLoad()

    self.locationManager.delegate = self
    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
    self.locationManager.requestWhenInUseAuthorization()
    self.locationManager.startUpdatingLocation()
    self.mapView.showsUserLocation = true

}

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


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

    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: 1, longitudeDelta: 1))

    self.mapView.setRegion(region, animated: true)
}

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

}

NSLocationWhenInUseUsageDescription добавить в файл plist. Любая помощь. Спасибо

1 ответ

Если вы смотрите это в симуляторе. Затем выполните этот процесс, чтобы увеличить карту. так что вы можете увидеть улицы на карте

Нажмите Option/Alt key -> вы увидите два раунда. ущипнуть его для увеличения / уменьшения

Другие вопросы по тегам