├── .gitignore ├── .travis.yml ├── Berlin-Data.json ├── CCHMapClusterController Example OS X ├── CCHMapClusterController Example OS X.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CCHMapClusterController Example OS X.xcscheme ├── CCHMapClusterController Example OS X │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── CCHMapClusterController Example OS X-Info.plist │ ├── CCHMapClusterController Example OS X-Prefix.pch │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ └── main.m └── CCHMapClusterController Example OS XTests │ ├── CCHMapClusterController Example OS XTests-Info.plist │ └── en.lproj │ └── InfoPlist.strings ├── CCHMapClusterController Example iOS ├── CCHMapClusterController Example iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CCHMapClusterController Example iOS.xcscheme ├── CCHMapClusterController Example iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── CCHMapClusterController Example iOS-Info.plist │ ├── CCHMapClusterController Example iOS-Prefix.pch │ ├── ClusterAnnotationView.h │ ├── ClusterAnnotationView.m │ ├── DataReader.h │ ├── DataReader.m │ ├── DataReaderDelegate.h │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── CircleBlue21.imageset │ │ │ ├── Contents.json │ │ │ ├── circle21.png │ │ │ └── circle21@2x.png │ │ ├── CircleBlue24.imageset │ │ │ ├── Contents.json │ │ │ ├── circle24.png │ │ │ └── circle24@2x.png │ │ ├── CircleBlue25.imageset │ │ │ ├── Contents.json │ │ │ ├── circle25.png │ │ │ └── circle25@2x.png │ │ ├── CircleBlue28.imageset │ │ │ ├── Contents.json │ │ │ ├── circle28.png │ │ │ └── circle28@2x.png │ │ ├── CircleBlue31.imageset │ │ │ ├── Contents.json │ │ │ ├── circle31.png │ │ │ └── circle31@2x.png │ │ ├── CircleBlue34.imageset │ │ │ ├── Contents.json │ │ │ ├── circle34.png │ │ │ └── circle34@2x.png │ │ ├── CircleBlue36.imageset │ │ │ ├── Contents.json │ │ │ ├── circle36.png │ │ │ └── circle36@2x.png │ │ ├── CircleBlue38.imageset │ │ │ ├── Contents.json │ │ │ ├── circle38.png │ │ │ └── circle38@2x.png │ │ ├── CircleBlue39.imageset │ │ │ ├── Contents.json │ │ │ ├── circle39.png │ │ │ └── circle39@2x.png │ │ ├── CircleRed21.imageset │ │ │ ├── Contents.json │ │ │ ├── circle21.png │ │ │ └── circle21@2x.png │ │ ├── CircleRed24.imageset │ │ │ ├── Contents.json │ │ │ ├── circle24.png │ │ │ └── circle24@2x.png │ │ ├── CircleRed25.imageset │ │ │ ├── Contents.json │ │ │ ├── circle25.png │ │ │ └── circle25@2x.png │ │ ├── CircleRed28.imageset │ │ │ ├── Contents.json │ │ │ ├── circle28.png │ │ │ └── circle28@2x.png │ │ ├── CircleRed31.imageset │ │ │ ├── Contents.json │ │ │ ├── circle31.png │ │ │ └── circle31@2x.png │ │ ├── CircleRed34.imageset │ │ │ ├── Contents.json │ │ │ ├── circle34.png │ │ │ └── circle34@2x.png │ │ ├── CircleRed36.imageset │ │ │ ├── Contents.json │ │ │ ├── circle36.png │ │ │ └── circle36@2x.png │ │ ├── CircleRed38.imageset │ │ │ ├── Contents.json │ │ │ ├── circle38.png │ │ │ └── circle38@2x.png │ │ ├── CircleRed39.imageset │ │ │ ├── Contents.json │ │ │ ├── circle39.png │ │ │ └── circle39@2x.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── SquareBlue.imageset │ │ │ ├── Contents.json │ │ │ ├── Marker-Square2.png │ │ │ └── Marker-Square2@2x.png │ │ └── SquareRed.imageset │ │ │ ├── Contents.json │ │ │ ├── square21-s.png │ │ │ └── square21.png │ ├── Launch Screen.storyboard │ ├── MapViewController.h │ ├── MapViewController.m │ ├── Settings.h │ ├── Settings.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── CCHMapClusterController Example iOSTests │ ├── CCHMapClusterController Example iOSTests-Info.plist │ ├── CCHMapViewDelegateProxyTests.m │ ├── CCHMapViewDelegateProxyViewForOverlayTests.m │ └── en.lproj │ └── InfoPlist.strings ├── CCHMapClusterController Tests ├── CCHCenterOfMassMapClustererTests.m ├── CCHFadeInOutMapAnimatorTests.m ├── CCHMapClusterAnnotationTests.m ├── CCHMapClusterControllerPerformanceTests.m ├── CCHMapClusterControllerTests.m ├── CCHMapClusterControllerUtilsTests.m ├── CCHMapTreeTests.m ├── CCHMapViewDelegateProxyOverlayTests.m ├── CCHMapViewDelegateProxyTests.m ├── CCHNearCenterMapClustererTests.m ├── KPAnnotationTree │ ├── KPAnnotation.h │ ├── KPAnnotation.m │ ├── KPAnnotationTree.h │ ├── KPAnnotationTree.m │ ├── KPTreeController.h │ ├── KPTreeController.m │ ├── KPTreeNode.h │ ├── KPTreeNode.m │ ├── NSArray+KP.h │ └── NSArray+KP.m ├── QTree │ ├── QCluster.h │ ├── QCluster.m │ ├── QNode.h │ ├── QNode.m │ ├── QTree-Prefix.pch │ ├── QTree.h │ ├── QTree.m │ ├── QTreeGeometryUtils.h │ ├── QTreeGeometryUtils.m │ └── QTreeInsertable.h └── TBQuadTree │ ├── TBQuadTree.h │ └── TBQuadTree.m ├── CCHMapClusterController.podspec ├── CCHMapClusterController.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CCHMapClusterController ├── CCHCenterOfMassMapClusterer.h ├── CCHCenterOfMassMapClusterer.m ├── CCHFadeInOutMapAnimator.h ├── CCHFadeInOutMapAnimator.m ├── CCHMapAnimator.h ├── CCHMapClusterAnnotation.h ├── CCHMapClusterAnnotation.m ├── CCHMapClusterController.h ├── CCHMapClusterController.m ├── CCHMapClusterControllerDebugPolygon.h ├── CCHMapClusterControllerDebugPolygon.m ├── CCHMapClusterControllerDelegate.h ├── CCHMapClusterControllerUtils.h ├── CCHMapClusterControllerUtils.m ├── CCHMapClusterOperation.h ├── CCHMapClusterOperation.m ├── CCHMapClusterer.h ├── CCHMapTree.h ├── CCHMapTree.m ├── CCHMapTreeUtils.h ├── CCHMapTreeUtils.m ├── CCHMapViewDelegateProxy.h ├── CCHMapViewDelegateProxy.m ├── CCHNearCenterMapClusterer.h └── CCHNearCenterMapClusterer.m ├── CHANGES.md ├── LICENSE ├── MapClustering.png ├── README.md └── USA-HotelMotel.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berlin-Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/Berlin-Data.json -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/xcshareddata/xcschemes/CCHMapClusterController Example OS X.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X.xcodeproj/xcshareddata/xcschemes/CCHMapClusterController Example OS X.xcscheme -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/AppDelegate.h -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/AppDelegate.m -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X-Info.plist -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X-Prefix.pch -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS X/main.m -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS XTests/CCHMapClusterController Example OS XTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example OS X/CCHMapClusterController Example OS XTests/CCHMapClusterController Example OS XTests-Info.plist -------------------------------------------------------------------------------- /CCHMapClusterController Example OS X/CCHMapClusterController Example OS XTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/xcshareddata/xcschemes/CCHMapClusterController Example iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS.xcodeproj/xcshareddata/xcschemes/CCHMapClusterController Example iOS.xcscheme -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/AppDelegate.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/AppDelegate.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS-Info.plist -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS-Prefix.pch -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/ClusterAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/ClusterAnnotationView.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/ClusterAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/ClusterAnnotationView.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReader.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReader.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/DataReaderDelegate.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/circle21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/circle21.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/circle21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue21.imageset/circle21@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/circle24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/circle24.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/circle24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue24.imageset/circle24@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/circle25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/circle25.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/circle25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue25.imageset/circle25@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/circle28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/circle28.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/circle28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue28.imageset/circle28@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/circle31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/circle31.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/circle31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue31.imageset/circle31@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/circle34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/circle34.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/circle34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue34.imageset/circle34@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/circle36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/circle36.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/circle36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue36.imageset/circle36@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/circle38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/circle38.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/circle38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue38.imageset/circle38@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/circle39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/circle39.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/circle39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleBlue39.imageset/circle39@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/circle21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/circle21.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/circle21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed21.imageset/circle21@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/circle24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/circle24.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/circle24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed24.imageset/circle24@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/circle25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/circle25.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/circle25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed25.imageset/circle25@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/circle28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/circle28.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/circle28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed28.imageset/circle28@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/circle31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/circle31.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/circle31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed31.imageset/circle31@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/circle34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/circle34.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/circle34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed34.imageset/circle34@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/circle36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/circle36.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/circle36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed36.imageset/circle36@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/circle38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/circle38.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/circle38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed38.imageset/circle38@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/circle39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/circle39.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/circle39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/CircleRed39.imageset/circle39@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Marker-Square2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Marker-Square2.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Marker-Square2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareBlue.imageset/Marker-Square2@2x.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/Contents.json -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/square21-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/square21-s.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/square21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Images.xcassets/SquareRed.imageset/square21.png -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Launch Screen.storyboard -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/MapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/MapViewController.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/MapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/MapViewController.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Settings.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/Settings.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/SettingsViewController.h -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/SettingsViewController.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOS/main.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapClusterController Example iOSTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapClusterController Example iOSTests-Info.plist -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapViewDelegateProxyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapViewDelegateProxyTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapViewDelegateProxyViewForOverlayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/CCHMapViewDelegateProxyViewForOverlayTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Example iOS/CCHMapClusterController Example iOSTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHCenterOfMassMapClustererTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHCenterOfMassMapClustererTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHFadeInOutMapAnimatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHFadeInOutMapAnimatorTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapClusterAnnotationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapClusterAnnotationTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapClusterControllerPerformanceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapClusterControllerPerformanceTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapClusterControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapClusterControllerTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapClusterControllerUtilsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapClusterControllerUtilsTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapTreeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapTreeTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapViewDelegateProxyOverlayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapViewDelegateProxyOverlayTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHMapViewDelegateProxyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHMapViewDelegateProxyTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/CCHNearCenterMapClustererTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/CCHNearCenterMapClustererTests.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPAnnotation.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPAnnotation.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPAnnotationTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPAnnotationTree.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPAnnotationTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPAnnotationTree.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPTreeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPTreeController.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPTreeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPTreeController.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPTreeNode.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/KPTreeNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/KPTreeNode.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/NSArray+KP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/NSArray+KP.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/KPAnnotationTree/NSArray+KP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/KPAnnotationTree/NSArray+KP.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QCluster.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QCluster.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QNode.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QNode.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTree-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTree-Prefix.pch -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTree.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTree.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTreeGeometryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTreeGeometryUtils.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTreeGeometryUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTreeGeometryUtils.m -------------------------------------------------------------------------------- /CCHMapClusterController Tests/QTree/QTreeInsertable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/QTree/QTreeInsertable.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/TBQuadTree/TBQuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/TBQuadTree/TBQuadTree.h -------------------------------------------------------------------------------- /CCHMapClusterController Tests/TBQuadTree/TBQuadTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController Tests/TBQuadTree/TBQuadTree.m -------------------------------------------------------------------------------- /CCHMapClusterController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController.podspec -------------------------------------------------------------------------------- /CCHMapClusterController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCHMapClusterController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CCHMapClusterController/CCHCenterOfMassMapClusterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHCenterOfMassMapClusterer.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHCenterOfMassMapClusterer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHCenterOfMassMapClusterer.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHFadeInOutMapAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHFadeInOutMapAnimator.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHFadeInOutMapAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHFadeInOutMapAnimator.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapAnimator.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterAnnotation.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterAnnotation.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterController.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterController.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterControllerDebugPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterControllerDebugPolygon.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterControllerDebugPolygon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterControllerDebugPolygon.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterControllerDelegate.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterControllerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterControllerUtils.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterControllerUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterControllerUtils.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterOperation.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterOperation.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapClusterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapClusterer.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapTree.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapTree.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapTreeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapTreeUtils.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapTreeUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapTreeUtils.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapViewDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapViewDelegateProxy.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHMapViewDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHMapViewDelegateProxy.m -------------------------------------------------------------------------------- /CCHMapClusterController/CCHNearCenterMapClusterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHNearCenterMapClusterer.h -------------------------------------------------------------------------------- /CCHMapClusterController/CCHNearCenterMapClusterer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CCHMapClusterController/CCHNearCenterMapClusterer.m -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/LICENSE -------------------------------------------------------------------------------- /MapClustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/MapClustering.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/README.md -------------------------------------------------------------------------------- /USA-HotelMotel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choefele/CCHMapClusterController/HEAD/USA-HotelMotel.csv --------------------------------------------------------------------------------