Beispiel #1
0
        MKAnnotationView GetViewForAnnotation(MKMapView mapView, NSObject annotation)
        {
            var annotationView = new MKAnnotationView(annotation, "ExampleAnnotation");

            annotationView.CanShowCallout = true;

            annotationView.SetStyleId("sample-annotation");

            return annotationView;
        }