I've got the following custom annotation class:
import UIKit
import MapKit
class LocationMapAnnotation: NSObject, MKAnnotation {
var title: String?
var coordinate: CLLocationCoordinate2D
var location: Location
init(title: String, coordinate: CLLocationCoordinate2D, location: Location) {
self.title = title
self.coordinate = coordinate
self.location = location
}
}
I am loading the annotations into a map view like this:
for i in 0..<allLocations.count{
//Add an annotation
let l: Location = self.allLocations[i] as! Location
let coordinates = CLLocationCoordinate2DMake(l.latitude as Double, l.longitude as Double)
let annotation = LocationAnnotation(title: l.name, coordinate: coordinates, location: l)
mapView.addAnnotation(annotation)
}
And I am wanting to get the Location
object from the selected annotation. Currently I have this method which is called when ever I tap an annotation, but I am unsure how to retrieve the specific object from the annotation.
func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView) {
print("Annotation selected")
//performSegueWithIdentifier("locationInfoSegue", sender: self)
}
Thanks.
You can get your Annotation within didSelectAnnotationView, which will then give you MKAnnotationView. This MKAnnotationView has MKAnnotation as an object.