RMMarker.m
4.41 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
//
// RMMarker.m
// MapView
//
// Created by Joseph Gentle on 13/10/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMMarker.h"
#import "RMMarkerStyle.h"
#import "RMMarkerStyles.h"
#import "RMPixel.h"
NSString* const RMMarkerBlueKey = @"RMMarkerBlueKey";
NSString* const RMMarkerRedKey = @"RMMarkerRedKey";
static CGImageRef _markerRed = nil;
static CGImageRef _markerBlue = nil;
@implementation RMMarker
@synthesize location;
@synthesize data;
+ (RMMarker*) markerWithNamedStyle: (NSString*) styleName
{
return [[[RMMarker alloc] initWithNamedStyle: styleName] autorelease];
}
- (id) initWithCGImage: (CGImageRef) image
{
return [self initWithCGImage: image anchorPoint: CGPointMake(0.5, 1.0)];
}
- (id) initWithCGImage: (CGImageRef) image anchorPoint: (CGPoint) _anchorPoint
{
if (![super init])
return nil;
self.contents = (id)image;
self.bounds = CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image));
self.anchorPoint = _anchorPoint;
self.masksToBounds = NO;
label = nil;
return self;
}
- (id) initWithUIImage: (UIImage*) image
{
return [self initWithCGImage: [image CGImage]];
}
- (id) initWithKey: (NSString*) key
{
return [self initWithCGImage:[RMMarker markerImage:key]];
}
- (id) initWithStyle: (RMMarkerStyle*) style
{
return [self initWithCGImage: [style.markerIcon CGImage] anchorPoint: style.anchorPoint];
}
- (id) initWithNamedStyle: (NSString*) styleName
{
RMMarkerStyle* style = [[RMMarkerStyles styles] styleNamed: styleName];
if (style==nil) {
NSLog(@"problem creating marker: style '%@' not found", styleName);
return [self initWithCGImage: [RMMarker markerImage: RMMarkerRedKey]];
}
return [self initWithStyle: style];
}
- (void) setLabel: (UIView*)aLabel
{
if (label != nil)
{
[[label layer] removeFromSuperlayer];
[label release];
}
if (aLabel != nil)
{
label = [aLabel retain];
[self addSublayer:[label layer]];
}
}
- (void) setTextLabel: (NSString*)text
{
CGSize textSize = [text sizeWithFont:[UIFont systemFontOfSize:15]];
CGRect frame = CGRectMake([self bounds].size.width / 2 - textSize.width / 2,
4,
textSize.width+4,
textSize.height+4);
frame.size = [text sizeWithFont:[UIFont systemFontOfSize:15]];
UILabel *aLabel = [[UILabel alloc] initWithFrame:frame];
// UITextField *aLabel = [[UITextField alloc] initWithFrame:frame];
// [aLabel setBorderStyle:UITextBorderStyleRoundedRect];
// [aLabel setNumberOfLines:1];
[aLabel setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
[aLabel setBackgroundColor:[UIColor clearColor]];
[aLabel setTextColor:[UIColor blackColor]];
[aLabel setFont:[UIFont systemFontOfSize:15]];
[aLabel setTextAlignment:UITextAlignmentCenter];
[aLabel setText:text];
// [aLabel setCenter:CGPointMake(,0)];
[self setLabel:aLabel];
[label release];
}
- (void) dealloc
{
[label release];
[data release];
[super dealloc];
}
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) center
{
self.position = RMScaleCGPointAboutPoint(self.position, zoomFactor, center);
/* CGRect currentRect = CGRectMake(self.position.x, self.position.y, self.bounds.size.width, self.bounds.size.height);
CGRect newRect = RMScaleCGRectAboutPoint(currentRect, zoomFactor, center);
self.position = newRect.origin;
self.bounds = CGRectMake(0, 0, newRect.size.width, newRect.size.height);
*/
}
+ (CGImageRef) loadPNGFromBundle: (NSString *)filename
{
NSString *path = [[NSBundle mainBundle] pathForResource:filename ofType:@"png"];
CGDataProviderRef dataProvider = CGDataProviderCreateWithFilename([path UTF8String]);
CGImageRef image = CGImageCreateWithPNGDataProvider(dataProvider, NULL, FALSE, kCGRenderingIntentDefault);
[NSMakeCollectable(image) autorelease];
CGDataProviderRelease(dataProvider);
return image;
}
+ (CGImageRef) markerImage: (NSString *) key
{
if (RMMarkerBlueKey == key
|| [RMMarkerBlueKey isEqualToString:key])
{
if (_markerBlue == nil)
_markerBlue = [self loadPNGFromBundle:@"marker-blue"];
return _markerBlue;
}
else if (RMMarkerRedKey == key
|| [RMMarkerRedKey isEqualToString: key])
{
if (_markerRed == nil)
_markerRed = [self loadPNGFromBundle:@"marker-red"];
return _markerRed;
}
return nil;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[label setAlpha:1.0f - [label alpha]];
// [self setTextLabel:@"hello there"];
// NSLog(@"marker at %f %f m %f %f touchesEnded", self.position.x, self.position.y, location.x, location.y);
}
@end