ABFRealmMapView
ABFRealmMapView copied to clipboard
Real-time map view clustering for Realm
UIView.bounds should be called from the main thread. ```#pragma mark - Public Functions MKZoomScale MKZoomScaleForMapView(MKMapView *mapView) { MKZoomScale currentZoomScale = mapView.bounds.size.width / mapView.visibleMapRect.size.width; return currentZoomScale; } ``` Stack trace: ```2019-08-04...
I tried loading around 4k annotations and it clustered but if user continuously play with map then it hangs at a point and crashes at times. Anyone faces the same...
Hey any chance you can push a release to CocoaPods?
Documentation and sample code are very short and I think it should be filled with a description of how to customize everything. Having a very simple sample code is nice...
Hi, the tutorial link in Realm website is broken: https://realm.io/news/building-an-ios-clustered-map-view-in-objective-c/ I remember visiting this link before. Was it removed intentionally?
Hi, I want to get the currently visible data (annotations) on the map always when users drags/zooms the map using the delegate method: ``` - (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated { DLog(@"regionDidChangeAnimated...