Answers for "ios mapview add annotation"

0

ios mapview add annotation

let london = MKPointAnnotation()
london.title = "London"
london.coordinate = CLLocationCoordinate2D(latitude: 51.507222, longitude: -0.1275)
yourMapView.addAnnotation(london)
Posted by: Guest on June-22-2021

Browse Popular Code Answers by Language