これは、MapKit に注釈を追加する方法です。
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = zoomLocation;
point.title = @"Where am I?";
point.subtitle = @"I'm here!!!";
[self.mapView addAnnotation:point ];
注釈の画像を変更するにはどうすればよいですか?