RMPath.m
4.72 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
//
// RMPolygon.m
// Shapes
//
// Created by Joseph Gentle on 11/11/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMPath.h"
#import "RMMapView.h"
#import "RMMapContents.h"
#import "RMMercatorToScreenProjection.h"
#import "RMPixel.h"
#import "RMProjection.h"
@implementation RMPath
@synthesize origin;
- (id) initWithContents: (RMMapContents*)aContents
{
if (![super init])
return nil;
contents = aContents;
path = CGPathCreateMutable();
lineWidth = 10.0f;
drawingMode = kCGPathFillStroke;
lineColor = [UIColor blueColor];
fillColor = [UIColor redColor];
self.masksToBounds = NO;
// self.frame = CGRectMake(100, 100, 100, 100);
// [self setNeedsDisplayOnBoundsChange:YES];
return self;
}
- (id) initForMap: (RMMapView*)map
{
return [self initWithContents:[map contents]];
}
-(void) dealloc
{
CGPathRelease(path);
[super dealloc];
}
- (id<CAAction>)actionForKey:(NSString *)key
{
return nil;
}
- (void) recalculateGeometry
{
float scale = [[contents mercatorToScreenProjection] scale];
// The bounds are actually in mercators...
CGRect boundsInMercators = CGPathGetBoundingBox(path);
boundsInMercators.origin.x -= lineWidth;
boundsInMercators.origin.y -= lineWidth;
boundsInMercators.size.width += 2*lineWidth;
boundsInMercators.size.height += 2*lineWidth;
CGRect pixelBounds = RMScaleCGRectAboutPoint(boundsInMercators, 1.0f / scale, CGPointMake(0,0));
// NSLog(@"old bounds: %f %f %f %f", self.bounds.origin.x, self.bounds.origin.y, self.bounds.size.width, self.bounds.size.height);
self.bounds = pixelBounds;
// NSLog(@"new bounds: %f %f %f %f", self.bounds.origin.x, self.bounds.origin.y, self.bounds.size.width, self.bounds.size.height);
// NSLog(@"old position: %f %f", self.position.x, self.position.y);
self.position = [[contents mercatorToScreenProjection] projectXYPoint: origin];
// NSLog(@"new position: %f %f", self.position.x, self.position.y);
// NSLog(@"Old anchor point %f %f", self.anchorPoint.x, self.anchorPoint.y);
self.anchorPoint = CGPointMake(-pixelBounds.origin.x / pixelBounds.size.width,-pixelBounds.origin.y / pixelBounds.size.height);
// NSLog(@"new anchor point %f %f", self.anchorPoint.x, self.anchorPoint.y);
}
- (void) addLineToXY: (RMXYPoint) point
{
// NSLog(@"addLineToXY %f %f", point.x, point.y);
NSValue* value = [NSValue value:&point withObjCType:@encode(RMXYPoint)];
if (points == nil)
{
points = [[NSMutableArray alloc] init];
[points addObject:value];
origin = point;
self.position = [[contents mercatorToScreenProjection] projectXYPoint: origin];
// NSLog(@"screen position set to %f %f", self.position.x, self.position.y);
CGPathMoveToPoint(path, NULL, 0.0f, 0.0f);
}
else
{
[points addObject:value];
point.x = point.x - origin.x;
point.y = point.y - origin.y;
CGPathAddLineToPoint(path, NULL, point.x, -point.y);
[self recalculateGeometry];
}
[self setNeedsDisplay];
}
- (void) addLineToScreenPoint: (CGPoint) point
{
RMXYPoint mercator = [[contents mercatorToScreenProjection] projectScreenPointToXY: point];
[self addLineToXY: mercator];
}
- (void) addLineToLatLong: (RMLatLong) point
{
RMXYPoint mercator = [[contents projection] latLongToPoint:point];
[self addLineToXY:mercator];
}
- (void)drawInContext:(CGContextRef)theContext
{
renderedScale = [contents scale];
// CGContextFillRect(theContext, self.bounds);//CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height));
float scale = 1.0f / [contents scale];
CGContextScaleCTM(theContext, scale, scale);
CGContextBeginPath(theContext);
CGContextAddPath(theContext, path);
CGContextSetLineWidth(theContext, lineWidth);
CGContextSetStrokeColorWithColor(theContext, [lineColor CGColor]);
CGContextSetFillColorWithColor(theContext, [fillColor CGColor]);
CGContextDrawPath(theContext, drawingMode);
}
- (void) closePath
{
CGPathCloseSubpath(path);
}
- (float) lineWidth
{
return lineWidth;
}
- (void) setLineWidth: (float) newLineWidth
{
lineWidth = newLineWidth;
[self recalculateGeometry];
[self setNeedsDisplay];
}
- (CGPathDrawingMode) drawingMode
{
return drawingMode;
}
- (void) setDrawingMode: (CGPathDrawingMode) newDrawingMode
{
drawingMode = newDrawingMode;
[self setNeedsDisplay];
}
- (UIColor*) lineColor
{
return lineColor;
}
- (void) setLineColor: (UIColor*) newLineColor
{
lineColor = newLineColor;
[self setNeedsDisplay];
}
- (UIColor*) fillColor
{
return fillColor;
}
- (void) setFillColor: (UIColor*) newFillColor
{
fillColor = newFillColor;
[self setNeedsDisplay];
}
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) pivot
{
[super zoomByFactor:zoomFactor near:pivot];
float newScale = [contents scale];
if (newScale / renderedScale >= 1.2f
|| newScale / renderedScale <= 0.8f)
{
[self setNeedsDisplay];
}
}
@end