RMQuadTree.m
13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
//
// RMQuadTree.m
// MapView
//
// Created by Thomas Rasch on 27.07.11.
// Copyright 2011 Alpstein. All rights reserved.
//
#import "RMQuadTree.h"
#import "RMAnnotation.h"
#import "RMProjection.h"
#import "RMMapView.h"
#pragma mark -
#pragma mark RMQuadTreeNode implementation
#define kMinimumQuadTreeElementWidth 200.0 // projected meters
#define kMaxAnnotationsPerLeaf 4
@interface RMQuadTreeNode ()
- (id)initWithMapView:(RMMapView *)aMapView forParent:(RMQuadTreeNode *)aParentNode inBoundingBox:(RMProjectedRect)aBoundingBox;
- (void)addAnnotation:(RMAnnotation *)annotation;
- (void)removeAnnotation:(RMAnnotation *)annotation;
- (void)addAnnotationsInBoundingBox:(RMProjectedRect)aBoundingBox toMutableArray:(NSMutableArray *)someArray createClusterAnnotations:(BOOL)createClusterAnnotations withClusterSize:(RMProjectedSize)clusterSize findGravityCenter:(BOOL)findGravityCenter;
- (void)removeUpwardsAllCachedClusterAnnotations;
@end
@implementation RMQuadTreeNode
@synthesize nodeType;
@synthesize boundingBox, northWestBoundingBox, northEastBoundingBox, southWestBoundingBox, southEastBoundingBox;
@synthesize parentNode, northWest, northEast, southWest, southEast;
- (id)initWithMapView:(RMMapView *)aMapView forParent:(RMQuadTreeNode *)aParentNode inBoundingBox:(RMProjectedRect)aBoundingBox
{
if (!(self = [super init]))
return nil;
// RMLog(@"New quadtree node at {(%.0f,%.0f),(%.0f,%.0f)}", aBoundingBox.origin.easting, aBoundingBox.origin.northing, aBoundingBox.size.width, aBoundingBox.size.height);
mapView = aMapView;
parentNode = [aParentNode retain];
northWest = northEast = southWest = southEast = nil;
annotations = [NSMutableArray new];
boundingBox = aBoundingBox;
cachedClusterAnnotation = nil;
double halfWidth = boundingBox.size.width / 2.0, halfHeight = boundingBox.size.height / 2.0;
northWestBoundingBox = RMProjectedRectMake(boundingBox.origin.x, boundingBox.origin.y + halfHeight, halfWidth, halfHeight);
northEastBoundingBox = RMProjectedRectMake(boundingBox.origin.x + halfWidth, boundingBox.origin.y + halfHeight, halfWidth, halfHeight);
southWestBoundingBox = RMProjectedRectMake(boundingBox.origin.x, boundingBox.origin.y, halfWidth, halfHeight);
southEastBoundingBox = RMProjectedRectMake(boundingBox.origin.x + halfWidth, boundingBox.origin.y, halfWidth, halfHeight);
nodeType = nodeTypeLeaf;
return self;
}
- (void)dealloc
{
cachedClusterAnnotation.layer = nil; [cachedClusterAnnotation release]; cachedClusterAnnotation = nil;
@synchronized (annotations) {
for (RMAnnotation *annotation in annotations)
{
annotation.quadTreeNode = nil;
}
}
[annotations release]; annotations = nil;
[northWest release]; northWest = nil;
[northEast release]; northEast = nil;
[southWest release]; southWest = nil;
[southEast release]; southEast = nil;
[parentNode release]; parentNode = nil;
[super dealloc];
}
- (NSArray *)annotations
{
NSArray *immutableAnnotations = nil;
@synchronized (annotations) {
immutableAnnotations = [NSArray arrayWithArray:annotations];
}
return immutableAnnotations;
}
- (void)addAnnotationToChildNodes:(RMAnnotation *)annotation
{
RMProjectedRect projectedRect = annotation.projectedBoundingBox;
if (RMProjectedRectContainsProjectedRect(northWestBoundingBox, projectedRect)) {
if (!northWest) northWest = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:self inBoundingBox:northWestBoundingBox];
[northWest addAnnotation:annotation];
} else if (RMProjectedRectContainsProjectedRect(northEastBoundingBox, projectedRect)) {
if (!northEast) northEast = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:self inBoundingBox:northEastBoundingBox];
[northEast addAnnotation:annotation];
} else if (RMProjectedRectContainsProjectedRect(southWestBoundingBox, projectedRect)) {
if (!southWest) southWest = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:self inBoundingBox:southWestBoundingBox];
[southWest addAnnotation:annotation];
} else if (RMProjectedRectContainsProjectedRect(southEastBoundingBox, projectedRect)) {
if (!southEast) southEast = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:self inBoundingBox:southEastBoundingBox];
[southEast addAnnotation:annotation];
} else {
@synchronized (annotations) {
[annotations addObject:annotation];
}
annotation.quadTreeNode = self;
[self removeUpwardsAllCachedClusterAnnotations];
}
}
- (void)addAnnotation:(RMAnnotation *)annotation
{
if (nodeType == nodeTypeLeaf)
{
@synchronized (annotations) {
[annotations addObject:annotation];
}
annotation.quadTreeNode = self;
if ([annotations count] <= kMaxAnnotationsPerLeaf || boundingBox.size.width < (kMinimumQuadTreeElementWidth * 2.0)) {
[self removeUpwardsAllCachedClusterAnnotations];
return;
}
nodeType = nodeTypeNode;
// problem: all annotations that cross two quadrants will always be re-added here, which
// might be a problem depending on kMaxAnnotationsPerLeaf
NSArray *immutableAnnotations = nil;
@synchronized (annotations) {
immutableAnnotations = [NSArray arrayWithArray:annotations];
[annotations removeAllObjects];
}
for (RMAnnotation *annotationToMove in immutableAnnotations)
{
[self addAnnotationToChildNodes:annotationToMove];
}
return;
}
[self addAnnotationToChildNodes:annotation];
}
- (void)removeAnnotation:(RMAnnotation *)annotation
{
if (!annotation.quadTreeNode) return;
@synchronized (annotations) {
[annotations removeObject:annotation];
}
[self removeUpwardsAllCachedClusterAnnotations];
annotation.quadTreeNode = nil;
}
- (void)annotationDidChangeBoundingBox:(RMAnnotation *)annotation
{
if (RMProjectedRectContainsProjectedRect(boundingBox, annotation.projectedBoundingBox))
return;
[annotation retain];
[self removeAnnotation:annotation];
RMQuadTreeNode *nextParentNode = self;
while ((nextParentNode = [nextParentNode parentNode]))
{
if (RMProjectedRectContainsProjectedRect(nextParentNode.boundingBox, annotation.projectedBoundingBox)) {
[nextParentNode addAnnotationToChildNodes:annotation];
break;
}
}
[annotation release];
}
- (NSUInteger)countEnclosedAnnotations
{
NSUInteger count = [annotations count];
count += [northWest countEnclosedAnnotations];
count += [northEast countEnclosedAnnotations];
count += [southWest countEnclosedAnnotations];
count += [southEast countEnclosedAnnotations];
return count;
}
- (NSArray *)enclosedAnnotations
{
NSMutableArray *enclosedAnnotations = [NSMutableArray arrayWithArray:self.annotations];
if (northWest) [enclosedAnnotations addObjectsFromArray:northWest.enclosedAnnotations];
if (northEast) [enclosedAnnotations addObjectsFromArray:northEast.enclosedAnnotations];
if (southWest) [enclosedAnnotations addObjectsFromArray:southWest.enclosedAnnotations];
if (southEast) [enclosedAnnotations addObjectsFromArray:southEast.enclosedAnnotations];
return enclosedAnnotations;
}
- (void)addAnnotationsInBoundingBox:(RMProjectedRect)aBoundingBox toMutableArray:(NSMutableArray *)someArray createClusterAnnotations:(BOOL)createClusterAnnotations withClusterSize:(RMProjectedSize)clusterSize findGravityCenter:(BOOL)findGravityCenter
{
if (createClusterAnnotations)
{
double halfWidth = boundingBox.size.width / 2.0;
if (boundingBox.size.width >= clusterSize.width && halfWidth < clusterSize.width)
{
if (!cachedClusterAnnotation)
{
NSArray *enclosedAnnotations = self.enclosedAnnotations;
NSUInteger enclosedAnnotationsCount = [enclosedAnnotations count];
if (enclosedAnnotationsCount < 2) {
[someArray addObjectsFromArray:enclosedAnnotations];
return;
}
RMProjectedPoint clusterMarkerPosition;
if (findGravityCenter)
{
double averageX = 0.0, averageY = 0.0;
for (RMAnnotation *annotation in enclosedAnnotations)
{
averageX += annotation.projectedLocation.x;
averageY += annotation.projectedLocation.y;
}
averageX /= (double)enclosedAnnotationsCount;
averageY /= (double) enclosedAnnotationsCount;
double halfClusterWidth = clusterSize.width / 2.0, halfClusterHeight = clusterSize.height / 2.0;
if (averageX - halfClusterWidth < boundingBox.origin.x) averageX = boundingBox.origin.x + halfClusterWidth;
if (averageX + halfClusterWidth > boundingBox.origin.x + boundingBox.size.width) averageX = boundingBox.origin.x + boundingBox.size.width - halfClusterWidth;
if (averageY - halfClusterHeight < boundingBox.origin.y) averageY = boundingBox.origin.y + halfClusterHeight;
if (averageY + halfClusterHeight > boundingBox.origin.y + boundingBox.size.height) averageY = boundingBox.origin.y + boundingBox.size.height - halfClusterHeight;
// TODO: anchorPoint
clusterMarkerPosition = RMProjectedPointMake(averageX, averageY);
} else
{
clusterMarkerPosition = RMProjectedPointMake(boundingBox.origin.x + halfWidth, boundingBox.origin.y + (boundingBox.size.height / 2.0));
}
cachedClusterAnnotation = [[RMAnnotation alloc] initWithMapView:mapView coordinate:[[mapView projection] projectedPointToCoordinate:clusterMarkerPosition] andTitle:[NSString stringWithFormat:@"%d", enclosedAnnotationsCount]];
cachedClusterAnnotation.annotationType = kRMClusterAnnotationTypeName;
cachedClusterAnnotation.userInfo = self;
}
[someArray addObject:cachedClusterAnnotation];
return;
}
// TODO: leaf clustering (necessary?)
if (nodeType == nodeTypeLeaf) {
@synchronized (annotations) {
[someArray addObjectsFromArray:annotations];
}
return;
}
} else {
if (nodeType == nodeTypeLeaf) {
@synchronized (annotations) {
[someArray addObjectsFromArray:annotations];
}
return;
}
}
if (RMProjectedRectIntersectsProjectedRect(aBoundingBox, northWestBoundingBox))
[northWest addAnnotationsInBoundingBox:aBoundingBox toMutableArray:someArray createClusterAnnotations:createClusterAnnotations withClusterSize:clusterSize findGravityCenter:findGravityCenter];
if (RMProjectedRectIntersectsProjectedRect(aBoundingBox, northEastBoundingBox))
[northEast addAnnotationsInBoundingBox:aBoundingBox toMutableArray:someArray createClusterAnnotations:createClusterAnnotations withClusterSize:clusterSize findGravityCenter:findGravityCenter];
if (RMProjectedRectIntersectsProjectedRect(aBoundingBox, southWestBoundingBox))
[southWest addAnnotationsInBoundingBox:aBoundingBox toMutableArray:someArray createClusterAnnotations:createClusterAnnotations withClusterSize:clusterSize findGravityCenter:findGravityCenter];
if (RMProjectedRectIntersectsProjectedRect(aBoundingBox, southEastBoundingBox))
[southEast addAnnotationsInBoundingBox:aBoundingBox toMutableArray:someArray createClusterAnnotations:createClusterAnnotations withClusterSize:clusterSize findGravityCenter:findGravityCenter];
@synchronized (annotations) {
for (RMAnnotation *annotation in annotations)
{
if (RMProjectedRectIntersectsProjectedRect(aBoundingBox, annotation.projectedBoundingBox))
[someArray addObject:annotation];
}
}
}
- (void)removeUpwardsAllCachedClusterAnnotations
{
if (parentNode) [parentNode removeUpwardsAllCachedClusterAnnotations];
cachedClusterAnnotation.layer = nil; [cachedClusterAnnotation release]; cachedClusterAnnotation = nil;
}
@end
#pragma mark -
#pragma mark RMQuadTree implementation
@implementation RMQuadTree
- (id)initWithMapView:(RMMapView *)aMapView
{
if (!(self = [super init]))
return nil;
mapView = aMapView;
rootNode = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:nil inBoundingBox:[[RMProjection googleProjection] planetBounds]];
return self;
}
- (void)dealloc
{
[rootNode release]; rootNode = nil;
[super dealloc];
}
- (void)addAnnotation:(RMAnnotation *)annotation
{
@synchronized (self) {
[rootNode addAnnotation:annotation];
}
}
- (void)removeAnnotation:(RMAnnotation *)annotation
{
@synchronized (self) {
[annotation.quadTreeNode removeAnnotation:annotation];
}
}
- (void)removeAllObjects
{
@synchronized (self) {
[rootNode release];
rootNode = [[RMQuadTreeNode alloc] initWithMapView:mapView forParent:nil inBoundingBox:[[RMProjection googleProjection] planetBounds]];
}
}
#pragma mark -
- (NSArray *)annotationsInProjectedRect:(RMProjectedRect)boundingBox
{
return [self annotationsInProjectedRect:boundingBox createClusterAnnotations:NO withClusterSize:RMProjectedSizeMake(0.0, 0.0) findGravityCenter:NO];
}
- (NSArray *)annotationsInProjectedRect:(RMProjectedRect)boundingBox createClusterAnnotations:(BOOL)createClusterAnnotations withClusterSize:(RMProjectedSize)clusterSize findGravityCenter:(BOOL)findGravityCenter
{
NSMutableArray *annotations = [NSMutableArray array];
@synchronized (self) {
[rootNode addAnnotationsInBoundingBox:boundingBox toMutableArray:annotations createClusterAnnotations:createClusterAnnotations withClusterSize:clusterSize findGravityCenter:findGravityCenter];
}
return annotations;
}
@end