Есть ли способ создать пин-код (аннотацию) в MKMapView на основе текущего местоположения пользователя? - PullRequest
0 голосов
/ 25 апреля 2019

В целом я пытаюсь создать приложение, которое использует API Spotify, цель приложения состоит в том, чтобы на основе текущей песни, которую пользователь слушает в Spotify, нажатием кнопки песня затем отображается в виде булавки. , В настоящее время я застрял при попытке сделать пин-код на основе текущего местоположения пользователя, которое остается там при нажатии кнопки.

Пока у меня есть код, который динамически следует за пользователем на MKMapView

import UIKit
import MapKit
import CoreLocation

class MapScreen: UIViewController {

    @IBOutlet weak var mapView: MKMapView!

    let locationManager = CLLocationManager()
    let regionInMeters: Double = 1000
    let newPin = MKPointAnnotation()

    override func viewDidLoad() {
        super.viewDidLoad()
        checkLocationServices()
    }


    func setupLocationManager() {
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyBest
    }


    func centerViewOnUserLocation() {
        if let location = locationManager.location?.coordinate {
            let region = MKCoordinateRegion.init(center: location, latitudinalMeters: regionInMeters, longitudinalMeters: regionInMeters)
            mapView.setRegion(region, animated: true)
        }
    }


    func checkLocationServices() {
        if CLLocationManager.locationServicesEnabled() {
            setupLocationManager()
            checkLocationAuthorization()
        } else {
            // Show alert letting the user know they have to turn this on.
        }
    }


    func checkLocationAuthorization() {
        switch CLLocationManager.authorizationStatus() {
        case .authorizedWhenInUse:
            mapView.showsUserLocation = true
            centerViewOnUserLocation()
            locationManager.startUpdatingLocation()
            break
        case .denied:
            // Show alert instructing them how to turn on permissions
            break
        case .notDetermined:
            locationManager.requestWhenInUseAuthorization()
        case .restricted:
            // Show an alert letting them know what's up
            break
        case .authorizedAlways:
            break
        }
    }


    //    class pinedSong: NSObject , MKAnnotation {
    //        let title: String?
    //        let artist: String?
    //        let coordinate: CLLocationCoordinate2D
    //
    //        init(title: String, artist: String, coordinate: CLLocationCoordinate2D)
    //        {
    //            self.title = title
    //            self.artist = artist
    //            self.coordinate = coordinate
    //
    //            super.init()
    //        }
    //    }
    //
    //
    //
    //
    //    @IBAction func btnPinSong(_ sender: UIButton) {
    //
    //
    //
    //
    //}
    //    func pinMaker(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    //        //Get Current Location
    //        let location = locations.last! as CLLocation
    //        let userLocation:CLLocation = locations[0] as CLLocation
    //        let myAnnotation: MKPointAnnotation = MKPointAnnotation()
    //        myAnnotation.coordinate = CLLocationCoordinate2DMake(userLocation.coordinate.latitude, userLocation.coordinate.longitude)
    //        myAnnotation.title = "Current location"
    //        mapView.addAnnotation(myAnnotation)
    //
    //    }
    //

}

extension MapScreen: CLLocationManagerDelegate {

    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        guard let location = locations.last else { return }
        let region = MKCoordinateRegion.init(center: location.coordinate, latitudinalMeters: regionInMeters, longitudinalMeters: regionInMeters)
        mapView.setRegion(region, animated: true)
    }


    func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
        checkLocationAuthorization()
    }



}

На данный момент все, что мне нужно, - это кнопка, которая размещает пин-код в зависимости от текущего местоположения пользователя, которое остается.

1 Ответ

0 голосов
/ 25 апреля 2019

Вы можете использовать locationManager.location для определения местоположения текущего пользователя.

@IBAction func btnPinSong(_ sender: UIButton) {
    //Get Current Location
    guard let userLocation = self.locationManager.location else {
        return
    }

    let myAnnotation: MKPointAnnotation = MKPointAnnotation()
    myAnnotation.coordinate = CLLocationCoordinate2DMake(userLocation.coordinate.latitude, userLocation.coordinate.longitude)
    myAnnotation.title = "Current location"
    mapView.addAnnotation(myAnnotation)
}
...