Current Location in Google Maps with swift
问题 I'm trying to display the user's current location on a google map but in the case below, the map doesn't even get displayed. What should I change to fix this? var locationManager = CLLocationManager() override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. //user location stuff locationManager.delegate = self locationManager.requestWhenInUseAuthorization() locationManager.desiredAccuracy = kCLLocationAccuracyBest locationManager