Thumbnail Based MapView Annotation Aasim Naseem, May 20, 2013March 12, 2024 JPSThumbnailAnnotation is an open-source library to customize your MapKit annotation view for displaying image thumbnails, titles, and subtitles. Here is a quick screenshot from my sample project using this library.SetupIt is free, and open source; You need to download JPSThumbnailAnnotation library from github and drag/drop the directory into your project; You will have the following six files in the library;JPSThumbnail.hJPSThumbnailAnnotation.hJPSThumbnailAnnotation.mJPSThumbnailAnnotationView.hJPSThumbnailAnnotationView.mJPSThumnail.mUsageimport JPSThumbnailAnnotation.h and add the following line of code to add one annotation on your map view JPSThumbnail *faisaMosqueAnnotation = [[JPSThumbnail alloc] init]; faisaMosqueAnnotation.image = [UIImage imageNamed:@”faisalMasjid.jpg”]; faisaMosqueAnnotation.title = kFaisalMasjidTitle; faisaMosqueAnnotation.subtitle = kFaisalMasjidSubTitle; faisaMosqueAnnotation.coordinate = CLLocationCoordinate2DMake(33.72976, 73.03698); faisaMosqueAnnotation.disclosureBlock = ^{ NSLog(@”Faisal Mosque selected”); }; JPSThumbnailAnnotation *annotation = [[JPSThumbnailAnnotation alloc] initWithThumbnail:faisaMosqueAnnotation]; [mapView addAnnotation: annotation];You are good to go now .. You can download a sample project from here.Happy Programming .. (:Aasim NaseemI’m an engineer by profession, a blogger and a photojournalist by hobby. Seasonal writer at LAFZ Media UK. I write on different topics and things around us. Contact me at +971.56.126.8842 or Aasim.Naseem@outlook.com iOS iosJPSThumbnailAnnotationMapKit