RMMarker.m
9.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
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
//
// RMMarker.m
//
// Copyright (c) 2008-2012, 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 "RMMarker.h"
#import "RMPixel.h"
@implementation RMMarker
@synthesize label;
@synthesize textForegroundColor;
@synthesize textBackgroundColor;
#define defaultMarkerAnchorPoint CGPointMake(0.5, 0.5)
#define kCachesPath [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0]
+ (UIFont *)defaultFont
{
return [UIFont systemFontOfSize:15];
}
// init
- (id)init
{
if (!(self = [super init]))
return nil;
label = nil;
textForegroundColor = [UIColor blackColor];
textBackgroundColor = [UIColor clearColor];
return self;
}
- (id)initWithUIImage:(UIImage *)image
{
return [self initWithUIImage:image anchorPoint:defaultMarkerAnchorPoint];
}
- (id)initWithUIImage:(UIImage *)image anchorPoint:(CGPoint)_anchorPoint
{
if (!(self = [self init]))
return nil;
self.contents = (id)[image CGImage];
self.contentsScale = image.scale;
self.bounds = CGRectMake(0, 0, image.size.width, image.size.height);
self.anchorPoint = _anchorPoint;
self.masksToBounds = NO;
self.label = nil;
return self;
}
- (id)initWithMapBoxMarkerImage
{
return [self initWithMapBoxMarkerImage:nil tintColor:nil size:RMMarkerMapBoxImageSizeMedium];
}
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName
{
return [self initWithMapBoxMarkerImage:symbolName tintColor:nil size:RMMarkerMapBoxImageSizeMedium];
}
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColor:(UIColor *)color
{
return [self initWithMapBoxMarkerImage:symbolName tintColor:color size:RMMarkerMapBoxImageSizeMedium];
}
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColor:(UIColor *)color size:(RMMarkerMapBoxImageSize)size
{
NSString *sizeString = nil;
switch (size)
{
case RMMarkerMapBoxImageSizeSmall:
sizeString = @"small";
break;
case RMMarkerMapBoxImageSizeMedium:
default:
sizeString = @"medium";
break;
case RMMarkerMapBoxImageSizeLarge:
sizeString = @"large";
break;
}
NSString *colorHex = nil;
if (color)
{
CGFloat red, green, blue, alpha;
if ([color getRed:&red green:&green blue:&blue alpha:&alpha])
colorHex = [NSString stringWithFormat:@"%02x%02x%02x", ((NSUInteger)red * 255), ((NSUInteger)green * 255), ((NSUInteger)blue * 255)];
}
return [self initWithMapBoxMarkerImage:symbolName tintColorHex:colorHex sizeString:sizeString];
}
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColorHex:(NSString *)colorHex
{
return [self initWithMapBoxMarkerImage:symbolName tintColorHex:colorHex sizeString:@"medium"];
}
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColorHex:(NSString *)colorHex sizeString:(NSString *)sizeString
{
BOOL useRetina = ([[UIScreen mainScreen] scale] > 1.0);
NSURL *imageURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://a.tiles.mapbox.com/v3/marker/pin-%@%@%@%@.png",
(sizeString ? [sizeString substringToIndex:1] : @"m"),
(symbolName ? [@"-" stringByAppendingString:symbolName] : @"-star"),
(colorHex ? [@"+" stringByAppendingString:[colorHex stringByReplacingOccurrencesOfString:@"#" withString:@""]] : @"+ff0000"),
(useRetina ? @"@2x" : @"")]];
UIImage *image = nil;
NSString *cachePath = [NSString stringWithFormat:@"%@/%@", kCachesPath, [imageURL lastPathComponent]];
if ((image = [UIImage imageWithData:[NSData dataWithContentsOfFile:cachePath] scale:(useRetina ? 2.0 : 1.0)]) && image)
return [self initWithUIImage:image];
[[NSFileManager defaultManager] createFileAtPath:cachePath contents:[NSData dataWithContentsOfURL:imageURL] attributes:nil];
return [self initWithUIImage:[UIImage imageWithData:[NSData dataWithContentsOfFile:cachePath] scale:(useRetina ? 2.0 : 1.0)]];
}
+ (void)clearCachedMapBoxMarkers
{
for (NSString *filePath in [[NSFileManager defaultManager] contentsOfDirectoryAtPath:kCachesPath error:nil])
if ([[filePath lastPathComponent] hasPrefix:@"pin-"] && [[filePath lastPathComponent] hasSuffix:@".png"])
[[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", kCachesPath, filePath] error:nil];
}
- (void)dealloc
{
self.label = nil;
self.textForegroundColor = nil;
self.textBackgroundColor = nil;
[super dealloc];
}
#pragma mark -
- (void)replaceUIImage:(UIImage *)image
{
[self replaceUIImage:image anchorPoint:defaultMarkerAnchorPoint];
}
- (void)replaceUIImage:(UIImage *)image anchorPoint:(CGPoint)_anchorPoint
{
self.contents = (id)[image CGImage];
self.bounds = CGRectMake(0, 0, image.size.width, image.size.height);
self.anchorPoint = _anchorPoint;
self.masksToBounds = NO;
}
- (void)setLabel:(UIView *)aView
{
if (label == aView)
return;
if (label != nil)
{
[[label layer] removeFromSuperlayer];
[label release]; label = nil;
}
if (aView != nil)
{
label = [aView retain];
[self addSublayer:[label layer]];
}
}
- (void)setTextBackgroundColor:(UIColor *)newTextBackgroundColor
{
[textBackgroundColor autorelease];
textBackgroundColor = [newTextBackgroundColor retain];
self.label.backgroundColor = textBackgroundColor;
}
- (void)setTextForegroundColor:(UIColor *)newTextForegroundColor
{
[textForegroundColor autorelease];
textForegroundColor = [newTextForegroundColor retain];
if ([self.label respondsToSelector:@selector(setTextColor:)])
((UILabel *)self.label).textColor = textForegroundColor;
}
- (void)changeLabelUsingText:(NSString *)text
{
CGPoint position = CGPointMake([self bounds].size.width / 2 - [text sizeWithFont:[RMMarker defaultFont]].width / 2, 4);
[self changeLabelUsingText:text position:position font:[RMMarker defaultFont] foregroundColor:[self textForegroundColor] backgroundColor:[self textBackgroundColor]];
}
- (void)changeLabelUsingText:(NSString*)text position:(CGPoint)position
{
[self changeLabelUsingText:text position:position font:[RMMarker defaultFont] foregroundColor:[self textForegroundColor] backgroundColor:[self textBackgroundColor]];
}
- (void)changeLabelUsingText:(NSString *)text font:(UIFont *)font foregroundColor:(UIColor *)textColor backgroundColor:(UIColor *)backgroundColor
{
CGPoint position = CGPointMake([self bounds].size.width / 2 - [text sizeWithFont:font].width / 2, 4);
[self setTextForegroundColor:textColor];
[self setTextBackgroundColor:backgroundColor];
[self changeLabelUsingText:text position:position font:font foregroundColor:textColor backgroundColor:backgroundColor];
}
- (void)changeLabelUsingText:(NSString *)text position:(CGPoint)position font:(UIFont *)font foregroundColor:(UIColor *)textColor backgroundColor:(UIColor *)backgroundColor
{
CGSize textSize = [text sizeWithFont:font];
CGRect frame = CGRectMake(position.x, position.y, textSize.width+4, textSize.height+4);
UILabel *aLabel = [[UILabel alloc] initWithFrame:frame];
[self setTextForegroundColor:textColor];
[self setTextBackgroundColor:backgroundColor];
[aLabel setNumberOfLines:0];
[aLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
[aLabel setBackgroundColor:backgroundColor];
[aLabel setTextColor:textColor];
[aLabel setFont:font];
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
[aLabel setTextAlignment:UITextAlignmentCenter];
#pragma clang diagnostic pop
[aLabel setText:text];
[self setLabel:aLabel];
[aLabel release];
}
- (void)toggleLabel
{
if (self.label == nil)
return;
if ([self.label isHidden])
[self showLabel];
else
[self hideLabel];
}
- (void)showLabel
{
if ([self.label isHidden])
{
// Using addSublayer will animate showing the label, whereas setHidden is not animated
[self addSublayer:[self.label layer]];
[self.label setHidden:NO];
}
}
- (void)hideLabel
{
if (![self.label isHidden])
{
// Using removeFromSuperlayer will animate hiding the label, whereas setHidden is not animated
[[self.label layer] removeFromSuperlayer];
[self.label setHidden:YES];
}
}
@end