[Solved] How do I get the Lat Long of where the user tapped? in Swift v3 and google maps sdk

I found the solution at: https://developers.google.com/maps/documentation/ios-sdk/events by googling for didTapAtCoordinate, which I somehow knew was part of the SDK. The most important line for me was: mapView.delegate = self. It’s possible that some other solutions I tried would have worked had I used mapView.delegate = self, but nothing else had mentioned it. Also, the func … Read more