Home

Awesome

FBAnnotationClustering

Version Carthage compatible Platform

FBAnnotationClustering is no longer maintained. All issues and pull request will not be checked.

FBAnnotationClustering is an iOS library for clustering map notifications in an easy and performant way. Check out the blog post about it.

<p align="center"> <img src="Images/example.png" alt="FBAnnotationClustering example"/> </p>

Usage

Create your clustering manager (and initialize with annotations or add annotations later):

self.clusteringManager = [[FBClusteringManager alloc] initWithAnnotations:arrayOfAnnotations];

Implement MKMapView delegate method mapView:regionDidChangeAnimated: to display annotations grouped in clusters on the map. An example of implementation:

- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{
    [[NSOperationQueue new] addOperationWithBlock:^{
        double scale = self.mapView.bounds.size.width / self.mapView.visibleMapRect.size.width;
        NSArray *annotations = [self.clusteringManager clusteredAnnotationsWithinMapRect:mapView.visibleMapRect withZoomScale:scale];
        
        [self.clusteringManager displayAnnotations:annotations onMapView:mapView];
    }];
}

Important: Call the method mapView:regionDidChangeAnimated: whenever you want to refresh currently visible map rectangle by yourself (for example, if you added annotations to clusteringManager)

All clusters will have FBAnnotationCluster class, so when MKMapView delegate methods are called, you can check if current annotation is cluster by checking its class. For example:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{   
    if ([annotation isKindOfClass:[FBAnnotationCluster class]]) {
        FBAnnotationCluster *cluster = (FBAnnotationCluster *)annotation;
        NSLog(@"Annotation is cluster. Number of annotations in cluster: %lu", (unsigned long)cluster.annotations.count);
    } else {
		NSLog(@"Normal annotation.")
    }	
        
    ...
} 

To run the example project; clone the repo, and run pod install from the Example directory first.

Requirements

Installation

FBAnnotationClustering is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "FBAnnotationClustering"

If you don't like Cocapods, you can add all files from FBAnnotationClustering directory to your project.

TODO

Author

Filip Beć, filip.bec@infinum.co

Credits

FBAnnotationClustering is based on a blog post written by thoughtbot.

Maintained and sponsored by Infinum.

<img src="https://infinum.co/infinum.png" width="264">

License

FBAnnotationClustering is available under the MIT license. See the LICENSE file for more info.