I got the following code from Tilt map in Mapkit programmatically using Swift but I'm not sure what to do with it. I want my map to be in like a 45 degree angle, kind of like when you use the maps app and you drag up using 2 fingers, I want my camera to always be that way.
let userCoordinate = CLLocationCoordinate2D(latitude: 58.592725, longitude: 16.185962)
let eyeCoordinate = CLLocationCoordinate2D(latitude: 58.571647, longitude: 16.234660)
let mapCamera = MKMapCamera(lookingAtCenterCoordinate: userCoordinate, fromEyeCoordinate: eyeCoordinate, eyeAltitude: 400.0)