В режиме карты местоположение пользователя отображалось на карте.
Когда я прокручиваю вверх-вниз-вправо-влево или любую другую сторону, то возвращаюсь к местоположению пользователя через 2 секунды.
Код:
override func viewWillAppear(_ animated: Bool) {
self.mapView.showsUserLocation = true
self.locationManager.delegate = self
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
self.locationManager.requestAlwaysAuthorization()
if CLLocationManager.locationServicesEnabled() {
self.locationManager.startUpdatingLocation()
}
}
func goToSelectedLocation(){
let selectedLocation:CLLocation = CLLocation(latitude: latitudeVal, longitude: longitudeVal)
let center = CLLocationCoordinate2D(latitude: selectedLocation.coordinate.latitude, longitude: selectedLocation.coordinate.longitude)
let region = MKCoordinateRegion(center: center, span: MKCoordinateSpan(latitudeDelta: 0.1, longitudeDelta: 0.1))
self.mapView.setRegion(region, animated: true)
}