We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we have below code for ( REVClusterBlock *block in clusteredBlocks ) { if( [block count] > 0 ) { if( ![REVClusterManager clusterAlreadyExistsForMapView:mapView andBlockCluster:block] ) { [newPins addObject:[block getClusteredAnnotation]]; } } }
return newPins;
in + (NSArray *) clusterAnnotationsForMapView:(MKMapView *)mapView forAnnotations:(NSArray *)pins blocks:(NSUInteger)blocks minClusterLevel:(NSUInteger)minClusterLevel method.
How can I manage the clusteredBlocks so that they deal with the whole map and not only on visible rect of map.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
we have below code
for ( REVClusterBlock *block in clusteredBlocks )
{
if( [block count] > 0 )
{
if( ![REVClusterManager clusterAlreadyExistsForMapView:mapView andBlockCluster:block] )
{
[newPins addObject:[block getClusteredAnnotation]];
}
}
}
in + (NSArray *) clusterAnnotationsForMapView:(MKMapView *)mapView forAnnotations:(NSArray *)pins blocks:(NSUInteger)blocks minClusterLevel:(NSUInteger)minClusterLevel
method.
How can I manage the clusteredBlocks so that they deal with the whole map and not only on visible rect of map.
The text was updated successfully, but these errors were encountered: