RMMarker.m
2.1 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
//
// RMMarker.m
// MapView
//
// Created by Joseph Gentle on 13/10/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMMarker.h"
#import "RMPixel.h"
NSString* const RMMarkerBlueKey = @"RMMarkerBlueKey";
NSString* const RMMarkerRedKey = @"RMMarkerRedKey";
static CGImageRef _markerRed = nil;
static CGImageRef _markerBlue = nil;
@implementation RMMarker
@synthesize location;
- (id) initWithCGImage: (CGImageRef) image
{
if (![super init])
return nil;
self.contents = (id)image;
self.bounds = CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image));
self.anchorPoint = CGPointMake(0.5, 1.0);
return self;
}
- (id) initWithUIImage: (UIImage*) image
{
return [self initWithCGImage: [image CGImage]];
}
- (id) initWithKey: (NSString*) key
{
return [self initWithCGImage:[RMMarker markerImage:key]];
}
- (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);
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;
}
@end