Results 44 comments of Claus Höfele

It turns out that pitching only works on a device – not in the simulator. It looks to me that the problem is related to the pitching angle: the further...

You are right about the cell size. Locations are considered the same if [their geohash is the same](https://github.com/choefele/CCHMapClusterController/blob/master/CCHMapClusterController/CCHMapClusterControllerUtils.m#L291) ([More about geohashes](https://en.wikipedia.org/wiki/Geohash)). The code is currently using a geohash length of...

Yes, that's what I meant. `CCHMapClusterOperation` uses [`anyObject`](https://github.com/choefele/CCHMapClusterController/blob/master/CCHMapClusterController/CCHMapClusterOperation.m#L138) to display unique locations. Basically you'll get a random location from the set. I'm thinking you might be best off with preprocessing...

Sorry for the late response and thanks for your pull request. I was thinking to support this use case in a similar way to `UITableView` by surrounding add/remove calls with...

I'm not really sure if the proposed API is a good idea. I was thinking about a beginUpdates/endUpdates style API. @mikrobi In what context would this feature be useful to...

@markkrenek Thanks for your example

Thanks for reminding me about this problem. I'll have a look, but I can't say when I'll be able to fix the issue. Thanks for your patience

The algorithms in this library would work for Google Maps (or any other map library), but the library is currently not written in a way that it would work with...

Hi Karen, At the moment, it's not possible to disable the clustering. How do you animate the camera? Could you give me a code example? The clustering happens whenever `mapView:regionDidChangeAnimated:`...

Hi Karen, At the moment, the only way to disable clustering would be to deallocate the `CCHMapClusterController` instance. This will leave the current annotations on the map view untouched. Then,...