RMTileSourcesContainer.m
5.8 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
//
// RMTileSourcesContainer.m
// MapView
//
// Created by Thomas Rasch on 21.06.12.
// Copyright (c) 2012 Alpstein. All rights reserved.
//
#import "RMTileSourcesContainer.h"
@implementation RMTileSourcesContainer
{
NSMutableArray *_tileSources;
RMProjection *_projection;
RMFractalTileProjection *_mercatorToTileProjection;
RMSphericalTrapezium _latitudeLongitudeBoundingBox;
float _minZoom, _maxZoom;
int _tileSideLength;
}
- (id)init
{
if (!(self = [super init]))
return nil;
_tileSources = [NSMutableArray new];
_projection = nil;
_mercatorToTileProjection = nil;
_latitudeLongitudeBoundingBox = ((RMSphericalTrapezium) {
.northEast = {.latitude = 90.0, .longitude = 180.0},
.southWest = {.latitude = -90.0, .longitude = -180.0}
});
_minZoom = FLT_MIN;
_maxZoom = FLT_MAX;
_tileSideLength = 0;
return self;
}
- (void)dealloc
{
[_tileSources release]; _tileSources = nil;
[_projection release]; _projection = nil;
[_mercatorToTileProjection release]; _mercatorToTileProjection = nil;
[super dealloc];
}
#pragma mark -
- (NSArray *)tileSources
{
return [[_tileSources copy] autorelease];
}
- (BOOL)setTileSource:(id <RMTileSource>)tileSource
{
[self removeAllTileSources];
return [self addTileSource:tileSource];
}
- (BOOL)addTileSource:(id <RMTileSource>)tileSource
{
return [self addTileSource:tileSource atIndex:-1];
}
- (BOOL)addTileSource:(id<RMTileSource>)tileSource atIndex:(NSUInteger)index
{
RMProjection *newProjection = [tileSource projection];
RMFractalTileProjection *newFractalTileProjection = [tileSource mercatorToTileProjection];
if ( ! _projection)
{
_projection = [newProjection retain];
}
else if (_projection != newProjection)
{
NSLog(@"The tilesource '%@' has a different projection than the tilesource container", [tileSource shortName]);
return NO;
}
if ( ! _mercatorToTileProjection)
_mercatorToTileProjection = [newFractalTileProjection retain];
_minZoom = MAX(_minZoom, [tileSource minZoom]);
_maxZoom = MIN(_maxZoom, [tileSource maxZoom]);
if (_tileSideLength == 0)
{
_tileSideLength = [tileSource tileSideLength];
}
else if (_tileSideLength != [tileSource tileSideLength])
{
NSLog(@"The tilesource '%@' has a different tile side length than the tilesource container", [tileSource shortName]);
return NO;
}
RMSphericalTrapezium newLatitudeLongitudeBoundingBox = [tileSource latitudeLongitudeBoundingBox];
_latitudeLongitudeBoundingBox = ((RMSphericalTrapezium) {
.northEast = {
.latitude = MIN(_latitudeLongitudeBoundingBox.northEast.latitude, newLatitudeLongitudeBoundingBox.northEast.latitude),
.longitude = MIN(_latitudeLongitudeBoundingBox.northEast.longitude, newLatitudeLongitudeBoundingBox.northEast.longitude)},
.southWest = {
.latitude = MAX(_latitudeLongitudeBoundingBox.southWest.latitude, newLatitudeLongitudeBoundingBox.southWest.latitude),
.longitude = MAX(_latitudeLongitudeBoundingBox.southWest.longitude, newLatitudeLongitudeBoundingBox.southWest.longitude)
}
});
if (index >= [_tileSources count])
[_tileSources addObject:tileSource];
else
[_tileSources insertObject:tileSource atIndex:index];
RMLog(@"Added the tilesource '%@' to the container", [tileSource shortName]);
return YES;
}
- (void)removeTileSource:(id <RMTileSource>)tileSource
{
[tileSource cancelAllDownloads];
[_tileSources removeObject:tileSource];
RMLog(@"Removed the tilesource '%@' from the container", [tileSource shortName]);
if ([_tileSources count] == 0)
{
[self removeAllTileSources]; // cleanup
}
}
- (void)removeTileSourceAtIndex:(NSUInteger)index
{
if (index >= [_tileSources count])
return;
id <RMTileSource> tileSource = [_tileSources objectAtIndex:index];
[tileSource cancelAllDownloads];
[_tileSources removeObject:tileSource];
RMLog(@"Removed the tilesource '%@' from the container", [tileSource shortName]);
}
- (void)moveTileSourceAtIndex:(NSUInteger)fromIndex toIndex:(NSUInteger)toIndex
{
if (fromIndex == toIndex)
return;
if (fromIndex >= [_tileSources count])
return;
id tileSource = [[_tileSources objectAtIndex:fromIndex] retain];
[_tileSources removeObjectAtIndex:fromIndex];
if (toIndex >= [_tileSources count])
[_tileSources addObject:tileSource];
else
[_tileSources insertObject:tileSource atIndex:toIndex];
[tileSource autorelease];
}
- (void)removeAllTileSources
{
[self cancelAllDownloads];
[_tileSources removeAllObjects];
if ([_tileSources count] == 0)
{
[_projection release]; _projection = nil;
[_mercatorToTileProjection release]; _mercatorToTileProjection = nil;
_latitudeLongitudeBoundingBox = ((RMSphericalTrapezium) {
.northEast = {.latitude = 90.0, .longitude = 180.0},
.southWest = {.latitude = -90.0, .longitude = -180.0}
});
_minZoom = FLT_MIN;
_maxZoom = FLT_MAX;
_tileSideLength = 0;
}
}
- (void)cancelAllDownloads
{
for (id <RMTileSource>tileSource in _tileSources)
[tileSource cancelAllDownloads];
}
- (RMFractalTileProjection *)mercatorToTileProjection
{
return _mercatorToTileProjection;
}
- (RMProjection *)projection
{
return _projection;
}
- (float)minZoom
{
return _minZoom;
}
- (float)maxZoom
{
return _maxZoom;
}
- (int)tileSideLength
{
return _tileSideLength;
}
- (RMSphericalTrapezium)latitudeLongitudeBoundingBox
{
return _latitudeLongitudeBoundingBox;
}
- (void)didReceiveMemoryWarning
{
for (id <RMTileSource>tileSource in _tileSources)
[tileSource didReceiveMemoryWarning];
}
@end