Git Product home page Git Product logo

Comments (5)

vijayradke avatar vijayradke commented on June 15, 2024

Any resolution of the issue?

from clusterkit.

solomon-gumball avatar solomon-gumball commented on June 15, 2024

@vijayradke Yea. Used a different library lol

from clusterkit.

vijayradke avatar vijayradke commented on June 15, 2024

May I know which one you used?

from clusterkit.

solomon-gumball avatar solomon-gumball commented on June 15, 2024

I used CCHMapClusterController. It doesn't have the nice pin location animations but it works and it's easy to use.

from clusterkit.

ZalyalovIldar avatar ZalyalovIldar commented on June 15, 2024

Just fix this with next line of codes:

Add open orderedSet to CKCluster.h:

- (NSMutableOrderedSet<id<MKAnnotation>> *) orderedSet;

In realisation CKCluster.m just return _annotations:

- (NSMutableOrderedSet<id<MKAnnotation>> *) orderedSet {
    return _annotations;
}

And inside CKClusterManager.m update private method:

- (void)updateMapRect:(MKMapRect)visibleMapRect animated:(BOOL)animated {
    if (!self.tree || MKMapRectIsNull(visibleMapRect) || MKMapRectIsEmpty(visibleMapRect)) {
        return;
    }
    
    MKMapRect clusterMapRect = MKMapRectWorld;
    if (self.marginFactor != kCKMarginFactorWorld) {
        clusterMapRect = MKMapRectInset(visibleMapRect,
                                        -self.marginFactor * visibleMapRect.size.width,
                                        -self.marginFactor * visibleMapRect.size.height);
    }
    
    double zoom = self.map.zoom;
    CKClusterAlgorithm *algorithm = (zoom < self.maxZoomLevel)? self.algorithm : [CKClusterAlgorithm new];
    NSArray *clusters = [algorithm clustersInRect:clusterMapRect zoom:zoom tree:self.tree];
    
   //------HERE the moment that delete all duplicates from clusters 
    for (CKCluster* cluster in clusters) {
        for (CKCluster* secondCluster in clusters) {
            
            if (![secondCluster isEqualToCluster:cluster] && [secondCluster intersectsCluster:cluster]) {
                
                NSMutableSet<id<MKAnnotation>> *secondSet = secondCluster.orderedSet.set.mutableCopy;
                
                [cluster.orderedSet minusSet:secondSet];
            }
        }
    }
    //---------------------------------------
    NSMutableSet *newClusters = [NSMutableSet setWithArray:clusters];
    NSMutableSet *oldClusters = [NSMutableSet setWithSet:_clusters];
    
    [oldClusters minusSet:newClusters];
    [newClusters minusSet:_clusters];
    
    if (visibleMapRect.size.width > _visibleMapRect.size.width) {
        [self collapse:oldClusters.allObjects to:newClusters.allObjects in:visibleMapRect];
        
    } else if (visibleMapRect.size.width < _visibleMapRect.size.width) {
        [self expand:newClusters.allObjects from:oldClusters.allObjects in:visibleMapRect];
        
    } else {
        [self.map addClusters:newClusters.allObjects];
        [self.map removeClusters:oldClusters.allObjects];
    }
    
    [_clusters minusSet:oldClusters];
    [_clusters unionSet:newClusters];
    
    _visibleMapRect = visibleMapRect;
}

Not optimised but although work perfectly.

from clusterkit.

Related Issues (20)

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.