Guest User

Untitled

a guest
Jan 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. func mapView(_ mapView: GMSMapView, didTapAt coordinate: CLLocationCoordinate2D)
  2. {
  3. let markerr = GMSMarker(position: coordinate)
  4. markerr.position.latitude = coordinate.latitude
  5. markerr.position.longitude = coordinate.longitude
  6. print("hello")
  7. print(markerr.position.latitude)
  8. let ULlocation = markerr.position.latitude
  9. let ULlgocation = markerr.position.longitude
  10. print(ULlocation)
  11. print(ULlgocation)
  12. markerr.map = self.googleMapsView
  13. mapView.delegate = self
  14. }
Add Comment
Please, Sign In to add comment