public void DidSelectAnnotation (MapView mapView, IAnnotation annotation)
 {
     // Just show the user which one was pressed
     new UIAlertView ("Annotation Tapped", "You tapped on: " + annotation.GetTitle (), null, "OK")
         .Show ();
 }
Exemple #2
0
 public void DidSelectAnnotation(MapView mapView, IAnnotation annotation)
 {
     // Just show the user which one was pressed
     new UIAlertView("Annotation Tapped", "You tapped on: " + annotation.GetTitle(), null, "OK")
     .Show();
 }