RMMapView.m
5.59 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
//
// RMMapView.m
// MapView
//
// Created by Joseph Gentle on 24/09/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMMapView.h"
#import "RMMapContents.h"
#import "RMTileLoader.h"
@implementation RMMapView
-(void) initValues
{
contents = [[RMMapContents alloc] initForView:self];
enableDragging = YES;
enableZoom = YES;
// [self recalculateImageSet];
if (enableZoom)
[self setMultipleTouchEnabled:TRUE];
// [[NSURLCache sharedURLCache] removeAllCachedResponses];
}
- (id)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
[self initValues];
}
return self;
}
- (void)awakeFromNib
{
[super awakeFromNib];
[self initValues];
}
-(void) dealloc
{
[contents release];
[super dealloc];
}
-(void) drawRect: (CGRect) rect
{
[contents drawRect:rect];
}
-(NSString*) description
{
CGRect bounds = [self bounds];
return [NSString stringWithFormat:@"iPhone MapView at %.0f,%.0f-%.0f,%.0f", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height];
}
#pragma mark Movement
-(void) moveToMercator: (RMMercatorPoint) point
{
// TODO Add delegate hooks
[contents moveToMercator:point];
}
-(void) moveToLatLong: (CLLocationCoordinate2D) point
{
// TODO Add delegate hooks
[contents moveToLatLong:point];
}
- (void)moveBy: (CGSize) delta
{
// TODO Add delegate hooks
[contents moveBy:delta];
}
- (void)zoomByFactor: (float) zoomFactor Near:(CGPoint) center
{
// TODO Add delegate hooks
[contents zoomByFactor: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];
// NSLog(@"expensive.");
}
- (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
{
if (lastGesture.numTouches == 0)
{
[RMMapContents setPerformExpensiveOperations:NO];
}
// NSLog(@"touchesBegan %d", [[event allTouches] count]);
lastGesture = [self getGestureDetails:[event allTouches]];
[self registerPausedDraggingDispatcher];
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
// I don't understand what the difference between this and touchesEnded is.
[self touchesEnded:touches withEvent:event];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
lastGesture = [self getGestureDetails:[event allTouches]];
// NSLog(@"touchesEnded %d ... lastgesture at %f, %f", [[event allTouches] count], lastGesture.center.x, lastGesture.center.y);
// NSLog(@"Assemble.");
if (lastGesture.numTouches == 0)
{
[self unRegisterPausedDraggingDispatcher];
// When factoring, beware these two instructions need to happen in this order.
[RMMapContents setPerformExpensiveOperations:YES];
}
// [contents recalculateImageSet];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
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];
}
@end