MapTestbedAppDelegate.m
3.58 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
//
// MapTestbedAppDelegate.m
// MapTestbed : Diagnostic map
//
#import "MapTestbedAppDelegate.h"
#import "RootViewController.h"
#import "RMPath.h"
@implementation MapTestbedAppDelegate
@synthesize window;
@synthesize rootViewController;
@synthesize mapContents;
-(void)performTestPart2
{
// a bug exists that offsets the path when we execute this moveToLatLong
CLLocationCoordinate2D pt;
pt.latitude = 48.86600492029781f;
pt.longitude = 2.3194026947021484f;
[mapContents moveToLatLong: pt];
}
-(void)performTestPart3
{
// path returns to correct position after this zoom
CLLocationCoordinate2D northeast, southwest;
northeast.latitude = 48.885875363989435f;
northeast.longitude = 2.338285446166992f;
southwest.latitude = 48.860406466081656f;
southwest.longitude = 2.2885894775390625;
[mapContents zoomWithLatLngBoundsNorthEast:northeast SouthWest:southwest];
}
- (void)performTest
{
NSLog(@"testing paths");
// if we zoom with bounds after the paths are created, nothing is displayed on the map
CLLocationCoordinate2D northeast, southwest;
northeast.latitude = 48.885875363989435f;
northeast.longitude = 2.338285446166992f;
southwest.latitude = 48.860406466081656f;
southwest.longitude = 2.2885894775390625;
[mapContents zoomWithLatLngBoundsNorthEast:northeast SouthWest:southwest];
CLLocationCoordinate2D one, two, three, four;
one.latitude = 48.884238608729035f;
one.longitude = 2.297086715698242f;
two.latitude = 48.878481319827735f;
two.longitude = 2.294340133666992f;
three.latitude = 48.87351371451778f;
three.longitude = 2.2948551177978516f;
four.latitude = 48.86600492029781f;
four.longitude = 2.3194026947021484f;
// draw a green path south down an avenue and southeast on Champs-Elysees
RMPath *testPath, *testRegion;
testPath = [[RMPath alloc] initWithContents:mapContents];
[testPath setLineColor:[UIColor greenColor]];
[testPath setFillColor:[UIColor clearColor]];
[testPath setLineWidth:40.0f];
[testPath setDrawingMode:kCGPathStroke];
[testPath addLineToLatLong:one];
[testPath addLineToLatLong:two];
[testPath addLineToLatLong:three];
[testPath addLineToLatLong:four];
[[mapContents overlay] addSublayer:testPath];
[testPath release];
CLLocationCoordinate2D r1, r2, r3, r4;
r1.latitude = 48.86637615203047f;
r1.longitude = 2.3236513137817383f;
r2.latitude = 48.86372241857954f;
r2.longitude = 2.321462631225586f;
r3.latitude = 48.86087090984738f;
r3.longitude = 2.330174446105957f;
r4.latitude = 48.86369418661614f;
r4.longitude = 2.332019805908203f;
// draw a blue-filled rectangle on top of the Tuileries
testRegion = [[RMPath alloc] initWithContents:mapContents];
[testRegion setFillColor:[UIColor colorWithRed: 0.1 green:0.1 blue: 0.8 alpha: 0.5 ]];
[testRegion setLineColor:[UIColor blueColor]];
[testRegion setLineWidth:20.0f];
[testRegion setDrawingMode:kCGPathFillStroke];
[testRegion addLineToLatLong:r1];
[testRegion addLineToLatLong:r2];
[testRegion addLineToLatLong:r3];
[testRegion addLineToLatLong:r4];
[testRegion closePath];
[[mapContents overlay] addSublayer:testRegion];
[testRegion release];
[self performSelector:@selector(performTestPart2) withObject:nil afterDelay:3.0f];
[self performSelector:@selector(performTestPart3) withObject:nil afterDelay:7.0f];
}
- (void)applicationDidFinishLaunching:(UIApplication *)application {
[window addSubview:[rootViewController view]];
[window makeKeyAndVisible];
[self performSelector:@selector(performTest) withObject:nil afterDelay:0.25f];
}
- (void)dealloc {
self.mapContents = nil;
[rootViewController release];
[window release];
[super dealloc];
}
@end