Thumbnail Based MapView Annotation Aasim Naseem, May 20, 2013 | Read Count: 12,565May 8, 2025 Category: My Tutorials > iOSJPSThumbnailAnnotation is an open-source library to customize your MapKit annotation view for displaying image thumbnails along with title and subtitle. Here is a quick screenshot from my sample project using this library. Setup Its free, and open source; You need to download JPSThumbnailAnnotation library from github and drag/drop the directory into your project; You will have following six files in library; JPSThumbnail.h JPSThumbnailAnnotation.h JPSThumbnailAnnotation.m JPSThumbnailAnnotationView.h JPSThumbnailAnnotationView.m JPSThumnail.m Usage import 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 .. (: Author Profile Aasim Naseem Hey, Thanks for your interest. I’m a PMP, AWS Solutions Architect, and Scrum Master certified professional with 17+ years of hands-on experience leading projects, building teams, and helping organizations deliver software solutions better, faster, and smarter. Outside of work, I’ve got a deep curiosity for history — especially ancient civilizations like Egypt. I also enjoy reflecting on the everyday moments that shape how we live and work. This blog is my space to share insights, lessons, and thoughts from both my professional journey and personal interests. Thanks for reading — and I hope you will find something here that matches your interest. Latest entries IslamJune 6, 2025 | Read Count: 400Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 641Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 591Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 625When Not To Use Agile: 5 Signs You Need a Different Approach iOS iosJPSThumbnailAnnotationMapKit
iOS How to symbolicate iPhone Crash Reports; May 10, 2011 | Read Count: 14,519May 5, 2025 Category: My Tutorials > iOSHello Everyone; Hows your developments going? Im sure you enjoy it as much as i do; Its really a fun; Today’s menu is related to iPhone Applications; We often notice that iPhone/iPod/iPad applications hangup or exit abnormally; It means the running application has been crashed due to some… Read More
iOS Beta Builder :: Wireless Distribution of Your Adhoc Archive June 5, 2013 | Read Count: 12,557April 9, 2025 Category: My Tutorials > iOS Hey .. how’s work going? It’s good Han !!! … good good … So you have done with your release and verified with QA after some bug fixing; That’s great; You done a good job; Now Its time to share the Adhoc with client; Ok… Read More
iOS Local history/revision of files in Xcode February 24, 2013 | Read Count: 12,588April 9, 2025 Category: My Tutorials > iOSHello friends .. hope things are going good on your desk .. Last night I was going through my tweets, and there I found something really interesting; I crawled it for few minutes and after reading some blog posts I came to know about a very useful… Read More