如何检测点击Google Maps iOS Swift的时间?

时间:2018-06-30 04:28:07

标签: ios swift google-maps gesture tap

我想检查并检测何时点击地图标记或其他任何东西。在这种情况下,iOS Swift 4中的Google地图是否存在任何委托?

谢谢。

1 个答案:

答案 0 :(得分:5)

 func mapView(_ mapView: GMSMapView, didTapAt coordinate: CLLocationCoordinate2D) {
 //Write your code here...
 }

如果未调用委托函数,请使用viewDidAppear()方法或LocationManager didUpdateLocations()方法设置mapview委托。