Using XCode v7.0 Beta 4
I attempt to add a visible pin to that map via map.addAnnotation(myareahere) as you can see here:
let myareahere = CLLocationCoordinate2DMake(51.5072, -0.1275)
let annotation = MKPointAnnotation()
annotation.coordinate = myareahere
annotation.title = "Name of My Area"
annotation.subtitle = "Sleep Here"
map.addAnnotation(myareahere)
This is all of course contained within the viewDidLoad function. The error I'm given on the last line (map.addAnnotation(myareahere)) is "Cannot invoke 'addAnnotation' with an argument of list type (CLLocationCoordinates2D)". This is perplexing to me for I do not know what else I would use.
The error is telling you that you're invoking
addAnnotation(_:)
with the wrong argument type. You're passing aCLLocationCoordinate2D
to the method, you mean to passannotation
(yourMKPointAnnotation
instance).