var touchPoint = gestuRerecognizer.locationInView(self.map)
var newCoordinate = map.convertPoint(touchPoint, fromCoordinateSpace: self.map)
var annotation = MKPointAnnotation()
annotation.coordinate = newCoordinate
这段代码给了我(不能将 'CGPoint' 类型的值分配给 'CLLocationCoordinate2D' 类型的值)错误。