RMMapView.m
14.8 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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
//
// RMMapView.m
// MapView
//
// Created by Joseph Gentle on 24/09/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMMapView.h"
#import "RMMapContents.h"
#import "RMMapViewDelegate.h"
#import "RMTileLoader.h"
#import "RMMercatorToScreenProjection.h"
#import "RMMarker.h"
#import "RMMarkerManager.h"
@interface RMMapView (PrivateMethods)
// methods for post-touch deceleration, ala UIScrollView
- (void)startDecelerationWithDelta:(CGSize)delta;
- (void)incrementDeceleration:(NSTimer *)timer;
- (void)stopDeceleration;
@end
@implementation RMMapView (Internal)
BOOL delegateHasBeforeMapMove;
BOOL delegateHasAfterMapMove;
BOOL delegateHasBeforeMapZoomByFactor;
BOOL delegateHasAfterMapZoomByFactor;
BOOL delegateHasDoubleTapOnMap;
BOOL delegateHasSingleTapOnMap;
BOOL delegateHasTapOnMarker;
BOOL delegateHasTapOnLabelForMarker;
BOOL delegateHasAfterMapTouch;
BOOL delegateHasDragMarkerPosition;
NSTimer *decelerationTimer;
CGSize decelerationDelta;
@end
@implementation RMMapView
@synthesize decelerationFactor;
-(void) initValues:(CLLocationCoordinate2D)latlong
{
if(round(latlong.latitude) != 0 && round(latlong.longitude) != 0)
{
contents = [[RMMapContents alloc] initForView:self WithLocation:latlong];
}else
{
contents = [[RMMapContents alloc] initForView:self];
}
enableDragging = YES;
enableZoom = YES;
decelerationFactor = 0.88f;
// [self recalculateImageSet];
if (enableZoom)
[self setMultipleTouchEnabled:TRUE];
self.backgroundColor = [UIColor grayColor];
// [[NSURLCache sharedURLCache] removeAllCachedResponses];
}
- (id)initWithFrame:(CGRect)frame
{
CLLocationCoordinate2D latlong;
if (self = [super initWithFrame:frame]) {
[self initValues:latlong];
}
return self;
}
- (id)initWithFrame:(CGRect)frame WithLocation:(CLLocationCoordinate2D)latlong
{
if (self = [super initWithFrame:frame]) {
[self initValues:latlong];
}
return self;
}
- (void)awakeFromNib
{
CLLocationCoordinate2D latlong = {0, 0};
[super awakeFromNib];
[self initValues:latlong];
}
-(void) dealloc
{
[contents release];
[super dealloc];
}
-(void) drawRect: (CGRect) rect
{
[contents drawRect:rect];
}
-(NSString*) description
{
CGRect bounds = [self bounds];
return [NSString stringWithFormat:@"MapView at %.0f,%.0f-%.0f,%.0f", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height];
}
-(RMMapContents*) contents
{
return [[contents retain] autorelease];
}
#pragma mark Delegate
@dynamic delegate;
- (void) setDelegate: (id<RMMapViewDelegate>) _delegate
{
if (delegate == _delegate) return;
delegate = _delegate;
delegateHasBeforeMapMove = [(NSObject*) delegate respondsToSelector: @selector(beforeMapMove:)];
delegateHasAfterMapMove = [(NSObject*) delegate respondsToSelector: @selector(afterMapMove:)];
delegateHasBeforeMapZoomByFactor = [(NSObject*) delegate respondsToSelector: @selector(beforeMapZoom: byFactor: near:)];
delegateHasAfterMapZoomByFactor = [(NSObject*) delegate respondsToSelector: @selector(afterMapZoom: byFactor: near:)];
delegateHasDoubleTapOnMap = [(NSObject*) delegate respondsToSelector: @selector(doubleTapOnMap:At:)];
delegateHasSingleTapOnMap = [(NSObject*) delegate respondsToSelector: @selector(singleTapOnMap:At:)];
delegateHasTapOnMarker = [(NSObject*) delegate respondsToSelector:@selector(tapOnMarker:onMap:)];
delegateHasTapOnLabelForMarker = [(NSObject*) delegate respondsToSelector:@selector(tapOnLabelForMarker:onMap:)];
delegateHasAfterMapTouch = [(NSObject*) delegate respondsToSelector: @selector(afterMapTouch:)];
delegateHasDragMarkerPosition = [(NSObject*) delegate respondsToSelector: @selector(dragMarkerPosition: onMap: position:)];
}
- (id<RMMapViewDelegate>) delegate
{
return delegate;
}
#pragma mark Movement
-(void) moveToXYPoint: (RMXYPoint) aPoint
{
if (delegateHasBeforeMapMove) [delegate beforeMapMove: self];
[contents moveToXYPoint:aPoint];
if (delegateHasAfterMapMove) [delegate afterMapMove: self];
}
-(void) moveToLatLong: (CLLocationCoordinate2D) point
{
if (delegateHasBeforeMapMove) [delegate beforeMapMove: self];
[contents moveToLatLong:point];
if (delegateHasAfterMapMove) [delegate afterMapMove: self];
}
- (void)moveBy: (CGSize) delta
{
if (delegateHasBeforeMapMove) [delegate beforeMapMove: self];
[contents moveBy:delta];
if (delegateHasAfterMapMove) [delegate afterMapMove: self];
}
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) center
{
if (delegateHasBeforeMapZoomByFactor) [delegate beforeMapZoom: self byFactor: zoomFactor near: center];
[contents zoomByFactor:zoomFactor near:center];
if (delegateHasAfterMapZoomByFactor) [delegate afterMapZoom: self byFactor: zoomFactor near: center];
}
#pragma mark Event handling
- (RMGestureDetails) getGestureDetails: (NSSet*) touches
{
RMGestureDetails gesture;
gesture.center.x = gesture.center.y = 0;
gesture.averageDistanceFromCenter = 0;
int interestingTouches = 0;
for (UITouch *touch in touches)
{
if ([touch phase] != UITouchPhaseBegan
&& [touch phase] != UITouchPhaseMoved
&& [touch phase] != UITouchPhaseStationary)
continue;
// NSLog(@"phase = %d", [touch phase]);
interestingTouches++;
CGPoint location = [touch locationInView: self];
gesture.center.x += location.x;
gesture.center.y += location.y;
}
if (interestingTouches == 0)
{
gesture.center = lastGesture.center;
gesture.numTouches = 0;
gesture.averageDistanceFromCenter = 0.0f;
return gesture;
}
// NSLog(@"interestingTouches = %d", interestingTouches);
gesture.center.x /= interestingTouches;
gesture.center.y /= interestingTouches;
for (UITouch *touch in touches)
{
if ([touch phase] != UITouchPhaseBegan
&& [touch phase] != UITouchPhaseMoved
&& [touch phase] != UITouchPhaseStationary)
continue;
CGPoint location = [touch locationInView: self];
// NSLog(@"For touch at %.0f, %.0f:", location.x, location.y);
float dx = location.x - gesture.center.x;
float dy = location.y - gesture.center.y;
// NSLog(@"delta = %.0f, %.0f distance = %f", dx, dy, sqrtf((dx*dx) + (dy*dy)));
gesture.averageDistanceFromCenter += sqrtf((dx*dx) + (dy*dy));
}
gesture.averageDistanceFromCenter /= interestingTouches;
gesture.numTouches = interestingTouches;
// NSLog(@"center = %.0f,%.0f dist = %f", gesture.center.x, gesture.center.y, gesture.averageDistanceFromCenter);
return gesture;
}
- (void)userPausedDragging
{
[RMMapContents setPerformExpensiveOperations:YES];
}
- (void)unRegisterPausedDraggingDispatcher
{
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(userPausedDragging) object:nil];
}
- (void)registerPausedDraggingDispatcher
{
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(userPausedDragging) object:nil];
[self performSelector:@selector(userPausedDragging) withObject:nil afterDelay:0.3];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[touches allObjects] objectAtIndex:0];
//Check if the touch hit a RMMarker subclass and if so, forward the touch event on
//so it can be handled there
id furthestLayerDown = [[[self contents] overlay] hitTest:[touch locationInView:self]];
if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
if ([furthestLayerDown respondsToSelector:@selector(touchesBegan:withEvent:)]) {
[furthestLayerDown performSelector:@selector(touchesBegan:withEvent:) withObject:touches withObject:event];
return;
}
}
if (lastGesture.numTouches == 0)
{
[RMMapContents setPerformExpensiveOperations:NO];
}
// NSLog(@"touchesBegan %d", [[event allTouches] count]);
lastGesture = [self getGestureDetails:[event allTouches]];
if (decelerationTimer != nil) {
[self stopDeceleration];
}
[self registerPausedDraggingDispatcher];
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[touches allObjects] objectAtIndex:0];
//Check if the touch hit a RMMarker subclass and if so, forward the touch event on
//so it can be handled there
id furthestLayerDown = [[[self contents] overlay] hitTest:[touch locationInView:self]];
if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
if ([furthestLayerDown respondsToSelector:@selector(touchesCancelled:withEvent:)]) {
[furthestLayerDown performSelector:@selector(touchesCancelled:withEvent:) withObject:touches withObject:event];
return;
}
}
// I don't understand what the difference between this and touchesEnded is.
[self touchesEnded:touches withEvent:event];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[touches allObjects] objectAtIndex:0];
//Check if the touch hit a RMMarker subclass and if so, forward the touch event on
//so it can be handled there
id furthestLayerDown = [[[self contents] overlay] hitTest:[touch locationInView:self]];
if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
if ([furthestLayerDown respondsToSelector:@selector(touchesEnded:withEvent:)]) {
[furthestLayerDown performSelector:@selector(touchesEnded:withEvent:) withObject:touches withObject:event];
return;
}
}
NSInteger lastTouches = lastGesture.numTouches;
// Calculate the gesture.
lastGesture = [self getGestureDetails:[event allTouches]];
// If there are no more fingers on the screen, resume any slow operations.
if (lastGesture.numTouches == 0)
{
[self unRegisterPausedDraggingDispatcher];
// When factoring, beware these two instructions need to happen in this order.
[RMMapContents setPerformExpensiveOperations:YES];
}
if (touch.tapCount >= 2)
{
if (delegateHasDoubleTapOnMap) {
[delegate doubleTapOnMap: self At: lastGesture.center];
} else {
// Default behaviour matches built in maps.app
[self zoomInToNextNativeZoomAt: [touch locationInView:self]];
}
} else if (lastTouches == 1 && touch.tapCount != 1) {
// deceleration
CGPoint prevLocation = [touch previousLocationInView:self];
CGPoint currLocation = [touch locationInView:self];
CGSize touchDelta = CGSizeMake(currLocation.x - prevLocation.x, currLocation.y - prevLocation.y);
[self startDecelerationWithDelta:touchDelta];
}
if (touch.tapCount == 1)
{
CALayer* hit = [contents.overlay hitTest:[touch locationInView:self]];
NSLog(@"LAYER of type %@",[hit description]);
if (hit != nil) {
CALayer *superlayer = [hit superlayer];
// See if tap was on a marker or marker label and send delegate protocol method
if ([hit isMemberOfClass: [RMMarker class]]) {
if (delegateHasTapOnMarker) {
[delegate tapOnMarker:(RMMarker*)hit onMap:self];
}
} else if (superlayer != nil && [superlayer isMemberOfClass: [RMMarker class]]) {
if (delegateHasTapOnLabelForMarker) {
[delegate tapOnLabelForMarker:(RMMarker*)superlayer onMap:self];
}
}
else if (delegateHasSingleTapOnMap) {
[delegate singleTapOnMap: self At: [touch locationInView:self]];
}
}
}
if (delegateHasAfterMapTouch) [delegate afterMapTouch: self];
// [contents recalculateImageSet];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[touches allObjects] objectAtIndex:0];
//Check if the touch hit a RMMarker subclass and if so, forward the touch event on
//so it can be handled there
id furthestLayerDown = [[[self contents] overlay] hitTest:[touch locationInView:self]];
if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
if ([furthestLayerDown respondsToSelector:@selector(touchesMoved:withEvent:)]) {
[furthestLayerDown performSelector:@selector(touchesMoved:withEvent:) withObject:touches withObject:event];
return;
}
}
CALayer* hit = [contents.overlay hitTest:[touch locationInView:self]];
NSLog(@"LAYER of type %@",[hit description]);
if (hit != nil) {
if ([hit isMemberOfClass: [RMMarker class]]) {
if (delegateHasDragMarkerPosition) {
[delegate dragMarkerPosition:(RMMarker*)hit onMap:self position:[[[event allTouches] anyObject]locationInView:self]];
return;
}
}
}
RMGestureDetails newGesture = [self getGestureDetails:[event allTouches]];
if (enableDragging && newGesture.numTouches == lastGesture.numTouches)
{
CGSize delta;
delta.width = newGesture.center.x - lastGesture.center.x;
delta.height = newGesture.center.y - lastGesture.center.y;
if (enableZoom && newGesture.numTouches > 1)
{
NSAssert (lastGesture.averageDistanceFromCenter > 0.0f && newGesture.averageDistanceFromCenter > 0.0f,
@"Distance from center is zero despite >1 touches on the screen");
double zoomFactor = newGesture.averageDistanceFromCenter / lastGesture.averageDistanceFromCenter;
[self moveBy:delta];
[self zoomByFactor: zoomFactor near: newGesture.center];
}
else
{
[self moveBy:delta];
}
}
lastGesture = newGesture;
[self registerPausedDraggingDispatcher];
}
#pragma mark LatLng/Pixel translation functions
- (CGPoint)latLongToPixel:(CLLocationCoordinate2D)latlong
{
return [contents latLongToPixel:latlong];
}
- (CLLocationCoordinate2D)pixelToLatLong:(CGPoint)pixel
{
return [contents pixelToLatLong:pixel];
}
- (CLLocationCoordinate2D)centerCoordinates
{
CGPoint point = CGPointMake([self frame].size.width/2, [self frame].size.height/2);
return [contents pixelToLatLong:point];
}
#pragma mark Auto Zoom
- (void)zoomInToNextNativeZoomAt: (CGPoint) point
{
[contents zoomInToNextNativeZoomAt:point animated:YES];
}
#pragma mark Manual Zoom
- (void)setZoom:(int)zoomInt
{
[contents setZoom:zoomInt];
}
-(void)setZoomBounds:(float)aMinZoom maxZoom:(float)aMaxZoom
{
[contents setZoomBounds:aMinZoom maxZoom:aMaxZoom];
}
#pragma mark Zoom With Bounds
- (void)zoomWithLatLngBoundsNorthEast:(CLLocationCoordinate2D)ne SouthWest:(CLLocationCoordinate2D)se
{
[contents zoomWithLatLngBoundsNorthEast:ne SouthWest:se];
}
- (RMLatLongBounds) getScreenCoordinateBounds
{
return [contents getScreenCoordinateBounds];
}
- (RMMarkerManager *)markerManager
{
return [contents markerManager];
}
#pragma mark Deceleration
- (void)startDecelerationWithDelta:(CGSize)delta {
if (ABS(delta.width) >= 1.0f && ABS(delta.height) >= 1.0f) {
decelerationDelta = delta;
decelerationTimer = [NSTimer scheduledTimerWithTimeInterval:0.01f
target:self
selector:@selector(incrementDeceleration:)
userInfo:nil
repeats:YES];
}
}
- (void)incrementDeceleration:(NSTimer *)timer {
if (ABS(decelerationDelta.width) < 0.01f && ABS(decelerationDelta.height) < 0.01f) {
[self stopDeceleration];
return;
}
// avoid calling delegate methods? design call here
[contents moveBy:decelerationDelta];
decelerationDelta.width *= [self decelerationFactor];
decelerationDelta.height *= [self decelerationFactor];
}
- (void)stopDeceleration {
if (decelerationTimer != nil) {
[decelerationTimer invalidate];
decelerationTimer = nil;
decelerationDelta = CGSizeZero;
// call delegate methods; design call (see above)
[self moveBy:CGSizeZero];
}
}
@end