RMMapView.m
27.6 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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
//
// RMMapView.m
//
// Copyright (c) 2008-2009, Route-Me Contributors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#import "RMMapView.h"
#import "RMMapContents.h"
#import "RMMapViewDelegate.h"
#import "RMTileLoader.h"
#import "RMMercatorToScreenProjection.h"
#import "RMMarker.h"
#import "RMProjection.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
@synthesize decelerationFactor;
@synthesize deceleration;
@synthesize rotation;
@synthesize enableDragging;
@synthesize enableZoom;
@synthesize enableRotate;
#pragma mark --- begin constants ----
#define kDefaultDecelerationFactor .80f
#define kMinDecelerationDelta 0.8f
#pragma mark --- end constants ----
- (RMMarkerManager *)markerManager
{
return contents.markerManager;
}
- (void)performInitialSetup
{
LogMethod();
enableDragging = YES;
enableZoom = YES;
enableRotate = NO;
decelerationFactor = kDefaultDecelerationFactor;
deceleration = NO;
// [self recalculateImageSet];
if (enableZoom || enableRotate)
[self setMultipleTouchEnabled:TRUE];
self.backgroundColor = [UIColor grayColor];
_constrainMovement = NO;
}
- (id)initWithFrame:(CGRect)frame
{
LogMethod();
if (!(self = [super initWithFrame:frame]))
return nil;
contents = nil;
[self performInitialSetup];
return self;
}
//===========================================================
// contents
//===========================================================
- (RMMapContents *)contents
{
if (!_contentsIsSet) {
contents = [[RMMapContents alloc] initWithView:self];
_contentsIsSet = YES;
}
return contents;
}
- (void)setContents:(RMMapContents *)theContents
{
if (contents != theContents) {
[contents autorelease];
contents = [theContents retain];
_contentsIsSet = YES;
[self performInitialSetup];
}
}
- (void)dealloc
{
LogMethod();
[self setDelegate:nil];
[self stopDeceleration];
[contents release]; contents = nil;
[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];
}
// Forward invocations to RMMapContents
- (void)forwardInvocation:(NSInvocation *)invocation
{
SEL aSelector = [invocation selector];
if ([contents respondsToSelector:aSelector])
[invocation invokeWithTarget:contents];
else
[self doesNotRecognizeSelector:aSelector];
}
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
if ([super respondsToSelector:aSelector])
return [super methodSignatureForSelector:aSelector];
else
return [contents methodSignatureForSelector:aSelector];
}
#pragma mark Delegate
@dynamic delegate;
- (void)setDelegate:(id <RMMapViewDelegate>)_delegate
{
if (delegate == _delegate)
return;
delegate = _delegate;
_delegateHasBeforeMapMove = [delegate respondsToSelector:@selector(beforeMapMove:)];
_delegateHasAfterMapMove = [delegate respondsToSelector:@selector(afterMapMove:)];
_delegateHasAfterMapMoveDeceleration = [delegate respondsToSelector:@selector(afterMapMoveDeceleration:)];
_delegateHasBeforeMapZoomByFactor = [delegate respondsToSelector:@selector(beforeMapZoom:byFactor:near:)];
_delegateHasAfterMapZoomByFactor = [delegate respondsToSelector:@selector(afterMapZoom:byFactor:near:)];
_delegateHasMapViewRegionDidChange = [delegate respondsToSelector:@selector(mapViewRegionDidChange:)];
_delegateHasBeforeMapRotate = [delegate respondsToSelector:@selector(beforeMapRotate:fromAngle:)];
_delegateHasAfterMapRotate = [delegate respondsToSelector:@selector(afterMapRotate:toAngle:)];
_delegateHasDoubleTapOnMap = [delegate respondsToSelector:@selector(doubleTapOnMap:at:)];
_delegateHasDoubleTapTwoFingersOnMap = [delegate respondsToSelector:@selector(doubleTapTwoFingersOnMap:at:)];
_delegateHasSingleTapOnMap = [delegate respondsToSelector:@selector(singleTapOnMap:at:)];
_delegateHasLongSingleTapOnMap = [delegate respondsToSelector:@selector(longSingleTapOnMap:at:)];
_delegateHasTapOnMarker = [delegate respondsToSelector:@selector(tapOnMarker:onMap:)];
_delegateHasTapOnLabelForMarker = [delegate respondsToSelector:@selector(tapOnLabelForMarker:onMap:)];
_delegateHasAfterMapTouch = [delegate respondsToSelector:@selector(afterMapTouch:)];
_delegateHasShouldDragMarker = [delegate respondsToSelector:@selector(mapView:shouldDragMarker:withEvent:)];
_delegateHasDidDragMarker = [delegate respondsToSelector:@selector(mapView:didDragMarker:withEvent:)];
}
- (id <RMMapViewDelegate>)delegate
{
return delegate;
}
#pragma mark Movement
- (void)moveToProjectedPoint:(RMProjectedPoint)aPoint
{
if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
[contents setCenterProjectedPoint:aPoint];
if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}
- (void)moveToLatLong:(CLLocationCoordinate2D)latlong
{
if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
[contents moveToLatLong:latlong];
if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}
#define kMoveAnimationDuration 0.25f
#define kMoveAnimationStepDuration 0.02f
- (void)moveToLatLong:(CLLocationCoordinate2D)latlong animated:(BOOL)animated
{
if (!animated) {
[self moveToLatLong:latlong];
return;
}
if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
long int steps = lroundf(kMoveAnimationDuration / kMoveAnimationStepDuration);
while (--steps > 0)
{
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:kMoveAnimationStepDuration]];
CGPoint startPoint = [contents latLongToPixel:contents.mapCenter];
CGPoint endPoint = [contents latLongToPixel:latlong];
CGPoint delta = CGPointMake((startPoint.x - endPoint.x) / steps, (startPoint.y - endPoint.y) / steps);
if (delta.x == 0.0 && delta.y == 0.0) return;
RMLog(@"%d steps from (%f,%f) to final location (%f,%f)", steps, self.contents.mapCenter.longitude, self.contents.mapCenter.latitude, latlong.longitude, latlong.latitude);
dispatch_sync(dispatch_get_main_queue(), ^{
[contents moveBy:CGSizeMake(delta.x, delta.y) andCorrectAllSublayers:NO];
});
}
dispatch_async(dispatch_get_main_queue(), ^{
[contents moveToLatLong:latlong];
if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
if (_delegateHasAfterMapMoveDeceleration) [delegate afterMapMoveDeceleration:self];
if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
});
});
}
- (void)setConstraintsSW:(CLLocationCoordinate2D)sw NE:(CLLocationCoordinate2D)ne
{
RMProjection *proj = self.contents.projection;
RMProjectedPoint projectedNE = [proj coordinateToProjectedPoint:ne];
RMProjectedPoint projectedSW = [proj coordinateToProjectedPoint:sw];
[self setProjectedConstraintsSW:projectedSW NE:projectedNE];
}
- (void)setProjectedConstraintsSW:(RMProjectedPoint)sw NE:(RMProjectedPoint)ne
{
SWconstraint = sw;
NEconstraint = ne;
_constrainMovement = YES;
}
- (void)moveBy:(CGSize)delta
{
[self moveBy:delta isIntermediateAnimationStep:NO];
}
- (void)moveBy:(CGSize)delta isIntermediateAnimationStep:(BOOL)isIntermediateAnimationStep
{
if (_constrainMovement)
{
RMMercatorToScreenProjection *mtsp = self.contents.mercatorToScreenProjection;
//calculate new bounds after move
RMProjectedRect pBounds=[mtsp projectedBounds];
RMProjectedSize XYDelta = [mtsp projectScreenSizeToProjectedSize:delta];
CGSize sizeRatio = CGSizeMake(((delta.width == 0) ? 0 : XYDelta.width / delta.width),
((delta.height == 0) ? 0 : XYDelta.height / delta.height));
RMProjectedRect newBounds=pBounds;
//move the rect by delta
newBounds.origin.northing -= XYDelta.height;
newBounds.origin.easting -= XYDelta.width;
// see if new bounds are within constrained bounds, and constrain if necessary
BOOL constrained = NO;
if ( newBounds.origin.northing < SWconstraint.northing ) { newBounds.origin.northing = SWconstraint.northing; constrained = YES; }
if ( newBounds.origin.northing+newBounds.size.height > NEconstraint.northing ) { newBounds.origin.northing = NEconstraint.northing - newBounds.size.height; constrained = YES; }
if ( newBounds.origin.easting < SWconstraint.easting ) { newBounds.origin.easting = SWconstraint.easting; constrained = YES; }
if ( newBounds.origin.easting+newBounds.size.width > NEconstraint.easting ) { newBounds.origin.easting = NEconstraint.easting - newBounds.size.width; constrained = YES; }
if ( constrained )
{
// Adjust delta to match constraint
XYDelta.height = pBounds.origin.northing - newBounds.origin.northing;
XYDelta.width = pBounds.origin.easting - newBounds.origin.easting;
delta = CGSizeMake(((sizeRatio.width == 0) ? 0 : XYDelta.width / sizeRatio.width),
((sizeRatio.height == 0) ? 0 : XYDelta.height / sizeRatio.height));
}
}
if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
[contents moveBy:delta andCorrectAllSublayers:!isIntermediateAnimationStep];
if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
}
- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center
{
[self zoomByFactor:zoomFactor near:center animated:NO];
}
- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center animated:(BOOL)animated
{
if (_constrainMovement)
{
// check that bounds after zoom don't exceed map constraints
// the logic is copued from the method zoomByFactor,
float _zoomFactor = [self.contents adjustZoomForBoundingMask:zoomFactor];
float zoomDelta = log2f(_zoomFactor);
float targetZoom = zoomDelta + [self.contents zoom];
BOOL canZoom = NO;
if (targetZoom == [self.contents zoom]) {
//OK... . I could even do a return here.. but it will hamper with future logic..
canZoom = YES;
}
// clamp zoom to remain below or equal to maxZoom after zoomAfter will be applied
if (targetZoom > [self.contents maxZoom]) {
zoomFactor = exp2f([self.contents maxZoom] - [self.contents zoom]);
}
// clamp zoom to remain above or equal to minZoom after zoomAfter will be applied
if (targetZoom < [self.contents minZoom]) {
zoomFactor = 1/exp2f([self.contents zoom] - [self.contents minZoom]);
}
// bools for syntactical sugar to understand the logic in the if statement below
BOOL zoomAtMax = ([self.contents zoom] == [self.contents maxZoom]);
BOOL zoomAtMin = ([self.contents zoom] == [self.contents minZoom]);
BOOL zoomGreaterMin = ([self.contents zoom] > [self.contents minZoom]);
BOOL zoomLessMax = ([self.contents zoom] < [ self.contents maxZoom]);
//zooming in zoomFactor > 1
//zooming out zoomFactor < 1
if ((zoomGreaterMin && zoomLessMax) || (zoomAtMax && zoomFactor<1) || (zoomAtMin && zoomFactor>1))
{
// if I'm here it means I could zoom, now we have to see what will happen after zoom
RMMercatorToScreenProjection *mtsp = self.contents.mercatorToScreenProjection;
// get copies of mercatorRoScreenProjection's data
RMProjectedPoint origin = [mtsp origin];
float metersPerPixel = mtsp.metersPerPixel;
CGRect screenBounds = [mtsp screenBounds];
// this is copied from [RMMercatorToScreenBounds zoomScreenByFactor]
// First we move the origin to the pivot...
origin.easting += center.x * metersPerPixel;
origin.northing += (screenBounds.size.height - center.y) * metersPerPixel;
// Then scale by 1/factor
metersPerPixel /= _zoomFactor;
// Then translate back
origin.easting -= center.x * metersPerPixel;
origin.northing -= (screenBounds.size.height - center.y) * metersPerPixel;
origin = [mtsp.projection wrapPointHorizontally:origin];
// calculate new bounds
RMProjectedRect zRect;
zRect.origin = origin;
zRect.size.width = screenBounds.size.width * metersPerPixel;
zRect.size.height = screenBounds.size.height * metersPerPixel;
// can zoom only if within bounds
canZoom = !(zRect.origin.northing < SWconstraint.northing || zRect.origin.northing+zRect.size.height> NEconstraint.northing ||
zRect.origin.easting < SWconstraint.easting || zRect.origin.easting+zRect.size.width > NEconstraint.easting);
}
if (!canZoom) {
RMLog(@"Zooming will move map out of bounds: no zoom");
return;
}
}
if (_delegateHasBeforeMapZoomByFactor) [delegate beforeMapZoom:self byFactor:zoomFactor near:center];
[contents zoomByFactor:zoomFactor near:center animated:animated withCallback:(animated && (_delegateHasAfterMapZoomByFactor || _delegateHasMapViewRegionDidChange)) ? self : nil isIntermediateAnimationStep:!animated];
if (!animated) {
if (_delegateHasAfterMapZoomByFactor) [delegate afterMapZoom:self byFactor:zoomFactor near:center];
if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}
}
- (void)animationStepped
{
if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}
- (void)zoomWithLatLngBoundsNorthEast:(CLLocationCoordinate2D)ne SouthWest:(CLLocationCoordinate2D)sw
{
[contents zoomWithLatLngBoundsNorthEast:ne SouthWest:sw];
[self moveBy:CGSizeZero];
}
#pragma mark RMMapContentsAnimationCallback methods
- (void)animationFinishedWithZoomFactor:(float)zoomFactor near:(CGPoint)p
{
if (_delegateHasAfterMapZoomByFactor)
[delegate afterMapZoom:self byFactor:zoomFactor near:p];
}
#pragma mark Event handling
- (RMGestureDetails)gestureDetails:(NSSet *)touches
{
RMGestureDetails gesture;
gesture.center.x = gesture.center.y = 0;
gesture.averageDistanceFromCenter = 0;
gesture.angle = 0.0;
int interestingTouches = 0;
for (UITouch *touch in touches)
{
if ([touch phase] != UITouchPhaseBegan
&& [touch phase] != UITouchPhaseMoved
&& [touch phase] != UITouchPhaseStationary)
continue;
// RMLog(@"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;
}
// RMLog(@"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];
// RMLog(@"For touch at %.0f, %.0f:", location.x, location.y);
float dx = location.x - gesture.center.x;
float dy = location.y - gesture.center.y;
// RMLog(@"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;
if ([touches count] == 2)
{
CGPoint first = [[[touches allObjects] objectAtIndex:0] locationInView:[self superview]];
CGPoint second = [[[touches allObjects] objectAtIndex:1] locationInView:[self superview]];
CGFloat height = second.y - first.y;
CGFloat width = first.x - second.x;
gesture.angle = atan2(height,width);
}
return gesture;
}
- (void)handleLongPress
{
if (_delegateHasLongSingleTapOnMap)
[delegate longSingleTapOnMap:self at:_longPressPosition];
}
- (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 = [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;
}
}
// RMLog(@"touchesBegan %d", [[event allTouches] count]);
lastGesture = [self gestureDetails:[event allTouches]];
if (deceleration)
{
if (_decelerationTimer != nil) {
[self stopDeceleration];
}
}
_longPressPosition = lastGesture.center;
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];
if (lastGesture.numTouches == 1) {
CALayer* hit = [contents.overlay hitTest:[touch locationInView:self]];
if (!hit || ![hit isKindOfClass: [RMMarker class]]) {
[self performSelector:@selector(handleLongPress) withObject:nil afterDelay:0.5];
}
}
}
// \bug touchesCancelled should clean up, not pass event to markers
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[touches allObjects] objectAtIndex:0];
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];
//Check if the touch hit a RMMarker subclass and if so, forward the touch event on
//so it can be handled there
id furthestLayerDown = [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 = [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 gestureDetails:[event allTouches]];
BOOL decelerating = NO;
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];
if (touch.tapCount >= 2)
{
BOOL twoFingerTap = [touches count] >= 2;
if (_delegateHasDoubleTapOnMap) {
if (twoFingerTap) {
if (_delegateHasDoubleTapTwoFingersOnMap) [delegate doubleTapTwoFingersOnMap:self at:lastGesture.center];
} else {
if (_delegateHasDoubleTapOnMap) [delegate doubleTapOnMap: self at:lastGesture.center];
}
} else {
// Default behaviour matches built in maps.app
float nextZoomFactor = 0;
if (twoFingerTap) {
nextZoomFactor = [contents prevNativeZoomFactor];
} else {
nextZoomFactor = [contents nextNativeZoomFactor];
}
if (nextZoomFactor != 0)
[self zoomByFactor:nextZoomFactor near:[touch locationInView:self] animated:YES];
}
} else if (lastTouches == 1 && touch.tapCount != 1) {
// deceleration
if(deceleration && enableDragging)
{
CGPoint prevLocation = [touch previousLocationInView:self];
CGPoint currLocation = [touch locationInView:self];
CGSize touchDelta = CGSizeMake(currLocation.x - prevLocation.x, currLocation.y - prevLocation.y);
[self startDecelerationWithDelta:touchDelta];
decelerating = YES;
}
}
if (touch.tapCount == 1)
{
if (lastGesture.numTouches == 0)
{
CALayer *hit = [contents.overlay hitTest:[touch locationInView:self]];
// RMLog(@"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 isKindOfClass: [RMMarker class]]) {
if (_delegateHasTapOnMarker) {
[delegate tapOnMarker:(RMMarker *)hit onMap:self];
}
} else if (superlayer != nil && [superlayer isKindOfClass: [RMMarker class]]) {
if (_delegateHasTapOnLabelForMarker) {
[delegate tapOnLabelForMarker:(RMMarker *)superlayer onMap:self];
}
} else if ([superlayer superlayer] != nil && [[superlayer superlayer] isKindOfClass:[RMMarker class]]) {
if (_delegateHasTapOnLabelForMarker) {
[delegate tapOnLabelForMarker:(RMMarker *)[superlayer superlayer] onMap:self];
}
} else if (_delegateHasSingleTapOnMap) {
[delegate singleTapOnMap:self at:[touch locationInView:self]];
}
}
}
else if (!enableDragging && (lastGesture.numTouches == 1))
{
float prevZoomFactor = [contents prevNativeZoomFactor];
if (prevZoomFactor != 0)
[self zoomByFactor:prevZoomFactor near:[touch locationInView:self] animated:YES];
}
}
if (_delegateHasAfterMapTouch) [delegate afterMapTouch:self];
}
- (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 = [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;
}
}
RMGestureDetails newGesture = [self gestureDetails:[event allTouches]];
CGPoint newLongPressPosition = newGesture.center;
CGFloat dx = newLongPressPosition.x - _longPressPosition.x;
CGFloat dy = newLongPressPosition.y - _longPressPosition.y;
if (sqrt(dx*dx + dy*dy) > 5)
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];
CALayer* hit = [contents.overlay hitTest:[touch locationInView:self]];
// RMLog(@"LAYER of type %@",[hit description]);
if (hit != nil)
{
if ([hit isKindOfClass: [RMMarker class]]) {
if (!_delegateHasShouldDragMarker || (_delegateHasShouldDragMarker && [delegate mapView:self shouldDragMarker:(RMMarker *)hit withEvent:event])) {
if (_delegateHasDidDragMarker) {
[delegate mapView:self didDragMarker:(RMMarker *)hit withEvent:event];
return;
}
}
}
}
if (enableRotate && (newGesture.numTouches == lastGesture.numTouches))
{
if (newGesture.numTouches == 2)
{
CGFloat angleDiff = lastGesture.angle - newGesture.angle;
CGFloat newAngle = self.rotation + angleDiff;
[self setRotation:newAngle];
}
}
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;
}
#pragma mark Deceleration
- (void)startDecelerationWithDelta:(CGSize)delta
{
if (fabsf(delta.width) >= 1.0f && fabsf(delta.height) >= 1.0f)
{
_decelerationDelta = delta;
if ( !_decelerationTimer ) {
_decelerationTimer = [NSTimer scheduledTimerWithTimeInterval:0.015f
target:self
selector:@selector(incrementDeceleration:)
userInfo:nil
repeats:YES];
}
}
}
- (void)incrementDeceleration:(NSTimer *)timer
{
if (fabsf(_decelerationDelta.width) < kMinDecelerationDelta && fabsf(_decelerationDelta.height) < kMinDecelerationDelta) {
[self stopDeceleration];
return;
}
// avoid calling delegate methods? design call here
[self moveBy:_decelerationDelta isIntermediateAnimationStep:YES];
_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];
}
if (_delegateHasAfterMapMoveDeceleration)
[delegate afterMapMoveDeceleration:self];
}
// Must be called by higher didReceiveMemoryWarning
- (void)didReceiveMemoryWarning
{
LogMethod();
[contents didReceiveMemoryWarning];
}
- (void)setFrame:(CGRect)frame
{
CGRect r = self.frame;
[super setFrame:frame];
// only change if the frame changes AND there is contents
if (!CGRectEqualToRect(r, frame) && contents) {
[contents setFrame:frame];
}
}
- (void)setRotation:(CGFloat)angle
{
if (_delegateHasBeforeMapRotate) [delegate beforeMapRotate:self fromAngle:rotation];
[CATransaction begin];
[CATransaction setValue:[NSNumber numberWithFloat:0.0f] forKey:kCATransactionAnimationDuration];
[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];
rotation = angle;
self.transform = CGAffineTransformMakeRotation(rotation);
[contents setRotation:rotation];
[CATransaction commit];
if (_delegateHasAfterMapRotate) [delegate afterMapRotate:self toAngle:rotation];
}
@end