Giter Site home page Giter Site logo

msmapclustering's Introduction

MSMapClustering

A subclass of MKMapView to cluster annotations

MSMapClustering lets you to cluster your annotations inside a map view, like Photos.app does with your photos on the map.

image

The code is freely adaped from an Apple tutorial of WWDC 2010, I've packed it into these classes to make a reusable component for my future works.

Structure

There are three main classes:

  • MSMapClustering, a subclass of MKMapView
  • MSMapClusteringDelegate, the class delegate that conforms to protocol <MKMapViewDelegate>
  • MSAnnotation, a particular class that conforms to protocol <MKAnnotation>

Usage

Include in your project the three classes above and then create your map view and its delegate:

MSMapClustering *mapView = [[MSMapClustering alloc] init];
mapView.delegate = [[MSMapClusteringDelegate alloc] initWithMapView:mapView];

Add/remove annotations using these methods

- (void)addMSAnnotation:(MSAnnotation *)annotation;
- (void)addMSAnnotations:(NSArray *)annotations;

- (void)removeMSAnnotation:(MSAnnotation *)annotation;
- (void)removeAllMSAnnotations;

Implement the delegate's method in the class MSMapClusteringDelegate (obviously!), but pay attention if you want to change methods already inside it.

If you want, you could change marginFactor and bucketSize parameters in MSMapClusteringDelegate.m.

  • marginFactor: this value controls the number of off screen annotations are displayed.
    A bigger number means more annotations, less chance of seeing annotations views pop in but decreased performance.
    A smaller number means fewer annotations, more chance of seeing annotations views pop in but better performance.
  • bucketSize: adjust this roughly based on the dimensions of your annotations views.
    Bigger numbers more aggressively coalesce annotations (fewer annotations displayed but better performance). Numbers too small result in overlapping annotations views and too many annotations in screen.

Dependencies

MapKit framework is required.

Demo

Play with it and ask me whatever you want.

License

Apache 2.0 http://www.apache.org/licenses/LICENSE-2.0

msmapclustering's People

Contributors

arrtchiu avatar marcosero avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

msmapclustering's Issues

MSMapClustering may require better removeMSAnnotation or removeMSAnnotations methods

Currently, MSMapClustering has addMSAnnotation and addMSAnnotations to force the annotations added to "((MSMapClusteringDelegate *)self.delegate)._allAnnotationsMapView". This is good.

But we don't have good "remove annotation(s)" methods to handle this quickly.

Currently, what I do is writing 2 lines in my main view controller:
(Note: this example is doing "removing all annotations on the map)

[_mapView removeAnnotations:[_mapView annotations]];
[((MSMapClusteringDelegate *)_mapView.delegate)._allAnnotationsMapView removeAnnotations:[((MSMapClusteringDelegate *)_mapView.delegate)._allAnnotationsMapView annotations]];

It is better if we could have 2 methods
removeMSAnnotation
removeMSAnnotations

Retain cycle regarding MSAnnotation.clusterAnnotation

MSAnnotation has a strong reference to its clusterAnnotation which creates a retain cycle (since clusterAnnotation in turn has a strong reference back to its contained annotations). To break this, I declared clusterAnnotation as weak, and now, MSAnnotations are getting released properly.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.