RMCircle.m
5.55 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
///
// RMCircle.m
//
// Copyright (c) 2008-2010, 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 "RMCircle.h"
#import "RMMapContents.h"
#import "RMProjection.h"
#import "RMMercatorToScreenProjection.h"
#define kDefaultLineWidth 10
#define kDefaultLineColor [UIColor blackColor]
#define kDefaultFillColor [UIColor blueColor]
@interface RMCircle ()
- (void)updateCirclePath;
@end
@implementation RMCircle
@synthesize shapeLayer;
@synthesize projectedLocation;
@synthesize enableDragging;
@synthesize enableRotation;
@synthesize lineColor;
@synthesize fillColor;
@synthesize radiusInMeters;
@synthesize lineWidthInPixels;
- (id)initWithContents:(RMMapContents *)aContents radiusInMeters:(CGFloat)newRadiusInMeters latLong:(CLLocationCoordinate2D)newLatLong
{
if (!(self = [super init]))
return nil;
CAShapeLayer *newShapeLayer = [[CAShapeLayer alloc] init];
shapeLayer = newShapeLayer;
[self addSublayer:newShapeLayer];
mapContents = aContents;
radiusInMeters = newRadiusInMeters;
latLong = newLatLong;
projectedLocation = [[mapContents projection] coordinateToProjectedPoint:newLatLong];
[self setPosition:[[mapContents mercatorToScreenProjection] projectProjectedPoint:projectedLocation]];
lineWidthInPixels = kDefaultLineWidth;
lineColor = kDefaultLineColor;
fillColor = kDefaultFillColor;
scaleLineWidth = NO;
enableDragging = YES;
enableRotation = YES;
circlePath = NULL;
[self updateCirclePath];
return self;
}
- (void)dealloc
{
[shapeLayer release]; shapeLayer = nil;
CGPathRelease(circlePath);
[lineColor release]; lineColor = nil;
[fillColor release]; fillColor = nil;
[super dealloc];
}
#pragma mark -
- (void)updateCirclePath
{
CGPathRelease(circlePath);
CGMutablePathRef newPath = CGPathCreateMutable();
CGFloat latRadians = latLong.latitude * M_PI / 180.0f;
CGFloat pixelRadius = radiusInMeters / cos(latRadians) / [mapContents metersPerPixel];
// DLog(@"Pixel Radius: %f", pixelRadius);
CGRect rectangle = CGRectMake(self.position.x - pixelRadius,
self.position.y - pixelRadius,
(pixelRadius * 2),
(pixelRadius * 2));
CGFloat offset = floorf(-lineWidthInPixels / 2.0f) - 2;
// DLog(@"Offset: %f", offset);
CGRect newBoundsRect = CGRectInset(rectangle, offset, offset);
[self setBounds:newBoundsRect];
// DLog(@"Circle Rectangle: %f, %f, %f, %f", rectangle.origin.x, rectangle.origin.y, rectangle.size.width, rectangle.size.height);
// DLog(@"Bounds Rectangle: %f, %f, %f, %f", self.bounds.origin.x, self.bounds.origin.y, self.bounds.size.width, self.bounds.size.height);
CGPathAddEllipseInRect(newPath, NULL, rectangle);
circlePath = newPath;
[[self shapeLayer] setPath:newPath];
[[self shapeLayer] setFillColor:[fillColor CGColor]];
[[self shapeLayer] setStrokeColor:[lineColor CGColor]];
[[self shapeLayer] setLineWidth:lineWidthInPixels];
}
#pragma mark Accessors
- (void)setProjectedLocation:(RMProjectedPoint)newProjectedLocation
{
projectedLocation = newProjectedLocation;
[self setPosition:[[mapContents mercatorToScreenProjection] projectProjectedPoint:projectedLocation]];
}
- (void)setLineColor:(UIColor *)newLineColor
{
if (lineColor != newLineColor) {
[lineColor release];
lineColor = [newLineColor retain];
[self updateCirclePath];
}
}
- (void)setFillColor:(UIColor *)newFillColor
{
if (fillColor != newFillColor) {
[fillColor release];
fillColor = [newFillColor retain];
[self updateCirclePath];
}
}
- (void)setRadiusInMeters:(CGFloat)newRadiusInMeters
{
radiusInMeters = newRadiusInMeters;
[self updateCirclePath];
}
- (void)setLineWidthInPixels:(CGFloat)newLineWidthInPixels
{
lineWidthInPixels = newLineWidthInPixels;
[self updateCirclePath];
}
#pragma mark Map Movement and Scaling
- (void)moveBy:(CGSize)delta
{
if (enableDragging) {
[super moveBy:delta];
}
}
- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center
{
[super zoomByFactor:zoomFactor near:center];
[self updateCirclePath];
}
- (void)moveToLatLong:(CLLocationCoordinate2D)newLatLong
{
latLong = newLatLong;
[self setProjectedLocation:[[mapContents projection] coordinateToProjectedPoint:newLatLong]];
[self setPosition:[[mapContents mercatorToScreenProjection] projectProjectedPoint:projectedLocation]];
// DLog(@"Position: %f, %f", [self position].x, [self position].y);
}
@end