The map window displays the user's location with a default blue bubble animation. How can I change the default blue to a different color?
You can change tintColor mapView to:
tintColor
mapView
mapView.tintColor = UIColor.greenColor()
Put this in viewDidLoad() ViewController where your embedded mapView .
viewDidLoad()
ViewController
In swift 3 try with a color literal
mapView.tintColor = #colorLiteral(red: 0.9607843137, green: 0.5764705882, blue: 0.003921568627, alpha: 1)