Показать текущее местоположение и обновить местоположение в MKMapView в Swift
Я учусь использовать новый язык Swift (только Swift, без Objective-C). Для этого я хочу сделать простой вид с картой (MKMapView). Я хочу найти и обновить местоположение пользователя (например, в приложении Apple Map).
Я пробовал это, но ничего не получилось:
import MapKit
import CoreLocation
class MapView : UIViewController, CLLocationManagerDelegate {
@IBOutlet weak var map: MKMapView!
var locationManager: CLLocationManager!
override func viewDidLoad() {
super.viewDidLoad()
if (CLLocationManager.locationServicesEnabled())
{
locationManager = CLLocationManager()
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.requestAlwaysAuthorization()
locationManager.startUpdatingLocation()
}
}
}
не могли бы вы мне помочь, пожалуйста?
7 ответов
вы должны переопределить CLLocationManager.didUpdateLocations
(часть CLLocationManagerDelegate), чтобы получить уведомление, когда менеджер местоположений получает текущее местоположение:
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
if let location = locations.last{
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.map.setRegion(region, animated: true)
}
}
Примечание: Если ваша цель iOS 8 или выше, вы должны включить NSLocationAlwaysUsageDescription
или NSLocationWhenInUseUsageDescription
введите свою информацию.plist, чтобы заставить службы определения местоположения работать.
для swift 3 и XCode 8 я нахожу этот ответ:
во-первых, вам нужно установить конфиденциальность в info.файл plist. Вставить строку NSLocationWhenInUseUsageDescription С вашим описанием, почему вы хотите получить местоположение пользователя. Например, установите строку "для карты в приложении".
-
во-вторых, используйте этот пример кода
@IBOutlet weak var mapView: MKMapView! private var locationManager: CLLocationManager! private var currentLocation: CLLocation? override func viewDidLoad() { super.viewDidLoad() mapView.delegate = self locationManager = CLLocationManager() locationManager.delegate = self locationManager.desiredAccuracy = kCLLocationAccuracyBest // Check for Location Services if CLLocationManager.locationServicesEnabled() { locationManager.requestWhenInUseAuthorization() locationManager.startUpdatingLocation() } } // MARK - CLLocationManagerDelegate func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { defer { currentLocation = locations.last } if currentLocation == nil { // Zoom to user location if let userLocation = locations.last { let viewRegion = MKCoordinateRegionMakeWithDistance(userLocation.coordinate, 2000, 2000) mapView.setRegion(viewRegion, animated: false) } } }
в-третьих, установите флаг местоположения пользователя в раскадровке для mapView.
100% работая, легкие шаги и испытанный
импорт библиотеки:
import MapKit
import CoreLocation
набор делегатов:
CLLocationManagerDelegate,MKMapViewDelegate
принимать переменная:
let locationManager = CLLocationManager()
напишите этот код на viewDidLoad ():
self.locationManager.requestAlwaysAuthorization ()
// For use in foreground
self.locationManager.requestWhenInUseAuthorization()
if CLLocationManager.locationServicesEnabled() {
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.startUpdatingLocation()
}
mapView.delegate = self
mapView.mapType = .standard
mapView.isZoomEnabled = true
mapView.isScrollEnabled = true
if let coor = mapView.userLocation.location?.coordinate{
mapView.setCenter(coor, animated: true)
}
написать метод делегата на месте:
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let locValue:CLLocationCoordinate2D = manager.location!.coordinate
mapView.mapType = MKMapType.standard
let span = MKCoordinateSpanMake(0.05, 0.05)
let region = MKCoordinateRegion(center: locValue, span: span)
mapView.setRegion(region, animated: true)
let annotation = MKPointAnnotation()
annotation.coordinate = locValue
annotation.title = "Javed Multani"
annotation.subtitle = "current location"
mapView.addAnnotation(annotation)
//centerMap(locValue)
}
не забудьте установить разрешение в информация.файл plist
<key>NSLocationWhenInUseUsageDescription</key>
<string>This application requires location services to work</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>This application requires location services to work</string>
это выглядит например:
в mylocation это демо-версия Swift iOS.
вы можете использовать эту демонстрацию для следующего:
показать текущее местоположение.
выберите другое место: в этом случае прекратите отслеживать местоположение.
добавьте push-pin в MKMapView (iOS) при касании.
для Swift 2 вы должны изменить его на следующее:
func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let location = locations.last
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.map.setRegion(region, animated: true)
}
вы должны переопределить CLLocationManager.didUpdateLocations
func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let userLocation:CLLocation = locations[0] as CLLocation
locationManager.stopUpdatingLocation()
let location = CLLocationCoordinate2D(latitude: userLocation.coordinate.latitude, longitude: userLocation.coordinate.longitude)
let span = MKCoordinateSpanMake(0.5, 0.5)
let region = MKCoordinateRegion (center: location,span: span)
mapView.setRegion(region, animated: true)
}
вы также должны добавить NSLocationWhenInUseUsageDescription
и NSLocationAlwaysUsageDescription
к вашей настройке plist Result
значение
в Swift 4, я использовал функцию делегата locationManager, как определено выше ..
func locationManager(manager: CLLocationManager!,
didUpdateLocations locations: [AnyObject]!) {
.. но это нужно было изменить ..
func locationManager(_ manager: CLLocationManager,
didUpdateLocations locations: [CLLocation]) {
Это произошло из .. https://github.com/lotfyahmed/MyLocation/blob/master/MyLocation/ViewController.swift - спасибо!