RMMapTiledLayerView.m
7.91 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
//
// RMMapTiledLayerView.m
// MapView
//
// Created by Thomas Rasch on 17.08.11.
// Copyright (c) 2011 Alpstein. All rights reserved.
//
#import "RMMapTiledLayerView.h"
#import "RMMapView.h"
#import "RMTileSource.h"
#import "RMTileImage.h"
#import "RMTileCache.h"
#import "RMMBTilesSource.h"
#import "RMDBMapSource.h"
@implementation RMMapTiledLayerView
{
RMMapView *_mapView;
id <RMTileSource> _tileSource;
}
@synthesize useSnapshotRenderer = _useSnapshotRenderer;
@synthesize tileSource = _tileSource;
+ (Class)layerClass
{
return [CATiledLayer class];
}
- (CATiledLayer *)tiledLayer
{
return (CATiledLayer *)self.layer;
}
- (id)initWithFrame:(CGRect)frame mapView:(RMMapView *)aMapView forTileSource:(id <RMTileSource>)aTileSource
{
if (!(self = [super initWithFrame:frame]))
return nil;
self.opaque = NO;
_mapView = [aMapView retain];
_tileSource = [aTileSource retain];
self.useSnapshotRenderer = NO;
CATiledLayer *tiledLayer = [self tiledLayer];
size_t levelsOf2xMagnification = _mapView.tileSourcesContainer.maxZoom;
if (_mapView.adjustTilesForRetinaDisplay) levelsOf2xMagnification += 1;
tiledLayer.levelsOfDetail = levelsOf2xMagnification;
tiledLayer.levelsOfDetailBias = levelsOf2xMagnification;
return self;
}
- (void)dealloc
{
[_tileSource cancelAllDownloads];
self.layer.contents = nil;
[_tileSource release]; _tileSource = nil;
[_mapView release]; _mapView = nil;
[super dealloc];
}
- (void)didMoveToWindow
{
self.contentScaleFactor = 1.0f;
}
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)context
{
CGRect rect = CGContextGetClipBoundingBox(context);
CGRect bounds = self.bounds;
short zoom = log2(bounds.size.width / rect.size.width);
// NSLog(@"drawLayer: {{%f,%f},{%f,%f}}", rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if (self.useSnapshotRenderer)
{
zoom = (short)ceilf(_mapView.adjustedZoomForRetinaDisplay);
CGFloat rectSize = bounds.size.width / powf(2.0, (float)zoom);
int x1 = floor(rect.origin.x / rectSize),
x2 = floor((rect.origin.x + rect.size.width) / rectSize),
y1 = floor(fabs(rect.origin.y / rectSize)),
y2 = floor(fabs((rect.origin.y + rect.size.height) / rectSize));
// NSLog(@"Tiles from x1:%d, y1:%d to x2:%d, y2:%d @ zoom %d", x1, y1, x2, y2, zoom);
if (zoom >= _tileSource.minZoom && zoom <= _tileSource.maxZoom)
{
UIGraphicsPushContext(context);
for (int x=x1; x<=x2; ++x)
{
for (int y=y1; y<=y2; ++y)
{
UIImage *tileImage = [_tileSource imageForTile:RMTileMake(x, y, zoom) inCache:[_mapView tileCache]];
[tileImage drawInRect:CGRectMake(x * rectSize, y * rectSize, rectSize, rectSize)];
}
}
UIGraphicsPopContext();
}
}
else
{
int x = floor(rect.origin.x / rect.size.width),
y = floor(fabs(rect.origin.y / rect.size.height));
// NSLog(@"Tile @ x:%d, y:%d, zoom:%d", x, y, zoom);
UIGraphicsPushContext(context);
UIImage *tileImage = nil;
if (zoom >= _tileSource.minZoom && zoom <= _tileSource.maxZoom)
{
if ([_tileSource isKindOfClass:[RMMBTilesSource class]] || [_tileSource isKindOfClass:[RMDBMapSource class]])
{
// for local tiles, query the source directly since trivial blocking
//
tileImage = [_tileSource imageForTile:RMTileMake(x, y, zoom) inCache:[_mapView tileCache]];
}
else
{
// for non-local tiles, consult cache directly first, else fetch asynchronously
//
tileImage = [[_mapView tileCache] cachedImage:RMTileMake(x, y, zoom) withCacheKey:[_tileSource uniqueTilecacheKey]];
if ( ! tileImage)
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void)
{
if ([_tileSource imageForTile:RMTileMake(x, y, zoom) inCache:[_mapView tileCache]])
{
dispatch_async(dispatch_get_main_queue(), ^(void)
{
[self.layer setNeedsDisplay];
});
}
});
}
}
}
if ( ! tileImage)
{
if (_mapView.missingTilesDepth == 0)
{
tileImage = [RMTileImage errorTile];
}
else
{
NSUInteger currentTileDepth = 1, currentZoom = zoom - currentTileDepth;
// tries to return lower zoom level tiles if a tile cannot be found
while ( !tileImage && currentZoom >= _tileSource.minZoom && currentTileDepth <= _mapView.missingTilesDepth)
{
float nextX = x / powf(2.0, (float)currentTileDepth),
nextY = y / powf(2.0, (float)currentTileDepth);
float nextTileX = floor(nextX),
nextTileY = floor(nextY);
tileImage = [_tileSource imageForTile:RMTileMake((int)nextTileX, (int)nextTileY, currentZoom) inCache:[_mapView tileCache]];
if (tileImage)
{
// crop
float cropSize = 1.0 / powf(2.0, (float)currentTileDepth);
CGRect cropBounds = CGRectMake(tileImage.size.width * (nextX - nextTileX),
tileImage.size.height * (nextY - nextTileY),
tileImage.size.width * cropSize,
tileImage.size.height * cropSize);
CGImageRef imageRef = CGImageCreateWithImageInRect([tileImage CGImage], cropBounds);
tileImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
break;
}
currentTileDepth++;
currentZoom = zoom - currentTileDepth;
}
}
}
if (_mapView.debugTiles)
{
UIGraphicsBeginImageContext(tileImage.size);
CGContextRef debugContext = UIGraphicsGetCurrentContext();
CGRect debugRect = CGRectMake(0, 0, tileImage.size.width, tileImage.size.height);
[tileImage drawInRect:debugRect];
UIFont *font = [UIFont systemFontOfSize:32.0];
CGContextSetStrokeColorWithColor(debugContext, [UIColor whiteColor].CGColor);
CGContextSetLineWidth(debugContext, 2.0);
CGContextSetShadowWithColor(debugContext, CGSizeMake(0.0, 0.0), 5.0, [UIColor blackColor].CGColor);
CGContextStrokeRect(debugContext, debugRect);
CGContextSetFillColorWithColor(debugContext, [UIColor whiteColor].CGColor);
NSString *debugString = [NSString stringWithFormat:@"Zoom %d", zoom];
CGSize debugSize1 = [debugString sizeWithFont:font];
[debugString drawInRect:CGRectMake(5.0, 5.0, debugSize1.width, debugSize1.height) withFont:font];
debugString = [NSString stringWithFormat:@"(%d, %d)", x, y];
CGSize debugSize2 = [debugString sizeWithFont:font];
[debugString drawInRect:CGRectMake(5.0, 5.0 + debugSize1.height + 5.0, debugSize2.width, debugSize2.height) withFont:font];
tileImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
[tileImage drawInRect:rect];
UIGraphicsPopContext();
}
[pool release]; pool = nil;
}
@end