RMMapBoxSource.m
13.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
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
//
// RMMapBoxSource.m
//
// Created by Justin R. Miller on 5/17/11.
// Copyright 2012 MapBox.
// 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.
//
// * Neither the name of MapBox, nor the names of its contributors may be
// used to endorse or promote products derived from this software
// without specific prior written permission.
//
// 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 "RMMapBoxSource.h"
#import "RMMapView.h"
#import "RMPointAnnotation.h"
#define kMapBoxNormalMapID @"examples.map-z2effxa8"
#define kMapBoxRetinaMapID @"examples.map-zswgei2n"
@interface RMMapBoxSource ()
@property (nonatomic, retain) NSDictionary *infoDictionary;
@property (nonatomic, retain) NSString *tileJSON;
@end
#pragma mark -
@implementation RMMapBoxSource
@synthesize infoDictionary=_infoDictionary, tileJSON=_tileJSON, imageQuality=_imageQuality, dataQueue=_dataQueue;
- (id)init
{
return [self initWithMapID:([[UIScreen mainScreen] scale] > 1.0 ? kMapBoxRetinaMapID : kMapBoxNormalMapID)];
}
- (id)initWithMapID:(NSString *)mapID
{
return [self initWithMapID:mapID enablingDataOnMapView:nil];
}
- (id)initWithTileJSON:(NSString *)tileJSON
{
return [self initWithTileJSON:tileJSON enablingDataOnMapView:nil];
}
- (id)initWithTileJSON:(NSString *)tileJSON enablingDataOnMapView:(RMMapView *)mapView
{
if (self = [super init])
{
_dataQueue = dispatch_queue_create(nil, DISPATCH_QUEUE_SERIAL);
_infoDictionary = (NSDictionary *)[[NSJSONSerialization JSONObjectWithData:[tileJSON dataUsingEncoding:NSUTF8StringEncoding]
options:0
error:nil] retain];
_tileJSON = [tileJSON retain];
id dataObject = nil;
if (mapView && (dataObject = [_infoDictionary objectForKey:@"data"]) && dataObject)
{
dispatch_async(_dataQueue, ^(void)
{
if ([dataObject isKindOfClass:[NSArray class]] && [[dataObject objectAtIndex:0] isKindOfClass:[NSString class]])
{
NSURL *dataURL = [NSURL URLWithString:[dataObject objectAtIndex:0]];
NSMutableString *jsonString = nil;
if (dataURL && (jsonString = [NSMutableString stringWithContentsOfURL:dataURL encoding:NSUTF8StringEncoding error:nil]) && jsonString)
{
if ([jsonString hasPrefix:@"grid("])
{
[jsonString replaceCharactersInRange:NSMakeRange(0, 5) withString:@""];
[jsonString replaceCharactersInRange:NSMakeRange([jsonString length] - 2, 2) withString:@""];
}
id jsonObject = nil;
if ((jsonObject = [NSJSONSerialization JSONObjectWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] options:0 error:nil]) && [jsonObject isKindOfClass:[NSDictionary class]])
{
for (NSDictionary *feature in [jsonObject objectForKey:@"features"])
{
NSDictionary *properties = [feature objectForKey:@"properties"];
CLLocationCoordinate2D coordinate = {
.longitude = [[[[feature objectForKey:@"geometry"] objectForKey:@"coordinates"] objectAtIndex:0] floatValue],
.latitude = [[[[feature objectForKey:@"geometry"] objectForKey:@"coordinates"] objectAtIndex:1] floatValue]
};
RMAnnotation *annotation = nil;
if ([mapView.delegate respondsToSelector:@selector(mapView:layerForAnnotation:)])
annotation = [RMAnnotation annotationWithMapView:mapView coordinate:coordinate andTitle:[properties objectForKey:@"title"]];
else
annotation = [RMPointAnnotation annotationWithMapView:mapView coordinate:coordinate andTitle:[properties objectForKey:@"title"]];
annotation.userInfo = properties;
dispatch_async(dispatch_get_main_queue(), ^(void)
{
[mapView addAnnotation:annotation];
});
}
}
}
}
});
}
}
return self;
}
- (id)initWithReferenceURL:(NSURL *)referenceURL
{
return [self initWithReferenceURL:referenceURL enablingDataOnMapView:nil];
}
- (id)initWithReferenceURL:(NSURL *)referenceURL enablingDataOnMapView:(RMMapView *)mapView
{
id dataObject = nil;
if ([[referenceURL pathExtension] isEqualToString:@"jsonp"])
referenceURL = [NSURL URLWithString:[[referenceURL absoluteString] stringByReplacingOccurrencesOfString:@".jsonp"
withString:@".json"
options:NSAnchoredSearch & NSBackwardsSearch
range:NSMakeRange(0, [[referenceURL absoluteString] length])]];
if ([[referenceURL pathExtension] isEqualToString:@"json"] && (dataObject = [NSString stringWithContentsOfURL:referenceURL encoding:NSUTF8StringEncoding error:nil]) && dataObject)
return [self initWithTileJSON:dataObject enablingDataOnMapView:mapView];
return nil;
}
- (id)initWithMapID:(NSString *)mapID enablingDataOnMapView:(RMMapView *)mapView
{
NSString *referenceURLString = [NSString stringWithFormat:@"http://a.tiles.mapbox.com/v3/%@.json", mapID];
return [self initWithReferenceURL:[NSURL URLWithString:referenceURLString] enablingDataOnMapView:mapView];
}
- (void)dealloc
{
dispatch_release(_dataQueue);
[_infoDictionary release];
[_tileJSON release];
[super dealloc];
}
#pragma mark
- (NSURL *)tileJSONURL
{
return [NSURL URLWithString:[NSString stringWithFormat:@"http://a.tiles.mapbox.com/v3/%@.json", [self.infoDictionary objectForKey:@"id"]]];
}
- (NSURL *)URLForTile:(RMTile)tile
{
NSInteger zoom = tile.zoom;
NSInteger x = tile.x;
NSInteger y = tile.y;
if ([self.infoDictionary objectForKey:@"scheme"] && [[self.infoDictionary objectForKey:@"scheme"] isEqual:@"tms"])
y = pow(2, zoom) - tile.y - 1;
NSString *tileURLString = nil;
if ([self.infoDictionary objectForKey:@"tiles"])
tileURLString = [[self.infoDictionary objectForKey:@"tiles"] objectAtIndex:0];
else
tileURLString = [self.infoDictionary objectForKey:@"tileURL"];
tileURLString = [tileURLString stringByReplacingOccurrencesOfString:@"{z}" withString:[[NSNumber numberWithInteger:zoom] stringValue]];
tileURLString = [tileURLString stringByReplacingOccurrencesOfString:@"{x}" withString:[[NSNumber numberWithInteger:x] stringValue]];
tileURLString = [tileURLString stringByReplacingOccurrencesOfString:@"{y}" withString:[[NSNumber numberWithInteger:y] stringValue]];
if (_imageQuality != RMMapBoxSourceQualityFull)
{
NSString *qualityExtension = nil;
switch (_imageQuality)
{
case RMMapBoxSourceQualityPNG32:
{
qualityExtension = @".png32";
break;
}
case RMMapBoxSourceQualityPNG64:
{
qualityExtension = @".png64";
break;
}
case RMMapBoxSourceQualityPNG128:
{
qualityExtension = @".png128";
break;
}
case RMMapBoxSourceQualityPNG256:
{
qualityExtension = @".png256";
break;
}
case RMMapBoxSourceQualityJPEG70:
{
qualityExtension = @".jpg70";
break;
}
case RMMapBoxSourceQualityJPEG80:
{
qualityExtension = @".jpg80";
break;
}
case RMMapBoxSourceQualityJPEG90:
{
qualityExtension = @".jpg90";
break;
}
case RMMapBoxSourceQualityFull:
default:
{
qualityExtension = @".png";
break;
}
}
tileURLString = [tileURLString stringByReplacingOccurrencesOfString:@".png"
withString:qualityExtension
options:NSAnchoredSearch | NSBackwardsSearch
range:NSMakeRange(0, [tileURLString length])];
}
return [NSURL URLWithString:tileURLString];
}
- (float)minZoom
{
return [[self.infoDictionary objectForKey:@"minzoom"] floatValue];
}
- (float)maxZoom
{
return [[self.infoDictionary objectForKey:@"maxzoom"] floatValue];
}
- (RMSphericalTrapezium)latitudeLongitudeBoundingBox
{
id bounds = [self.infoDictionary objectForKey:@"bounds"];
NSArray *parts = nil;
if ([bounds isKindOfClass:[NSArray class]])
parts = bounds;
else
parts = [bounds componentsSeparatedByString:@","];
if ([parts count] == 4)
{
RMSphericalTrapezium bounds = {
.southWest = {
.longitude = [[parts objectAtIndex:0] doubleValue],
.latitude = [[parts objectAtIndex:1] doubleValue],
},
.northEast = {
.longitude = [[parts objectAtIndex:2] doubleValue],
.latitude = [[parts objectAtIndex:3] doubleValue],
},
};
return bounds;
}
return kMapBoxDefaultLatLonBoundingBox;
}
- (BOOL)coversFullWorld
{
RMSphericalTrapezium ownBounds = [self latitudeLongitudeBoundingBox];
RMSphericalTrapezium defaultBounds = kMapBoxDefaultLatLonBoundingBox;
if (ownBounds.southWest.longitude <= defaultBounds.southWest.longitude + 10 &&
ownBounds.northEast.longitude >= defaultBounds.northEast.longitude - 10)
return YES;
return NO;
}
- (NSString *)legend
{
return [self.infoDictionary objectForKey:@"legend"];
}
- (CLLocationCoordinate2D)centerCoordinate
{
if ([self.infoDictionary objectForKey:@"center"])
{
return CLLocationCoordinate2DMake([[[self.infoDictionary objectForKey:@"center"] objectAtIndex:1] doubleValue],
[[[self.infoDictionary objectForKey:@"center"] objectAtIndex:0] doubleValue]);
}
return CLLocationCoordinate2DMake(0, 0);
}
- (float)centerZoom
{
if ([self.infoDictionary objectForKey:@"center"])
{
return [[[self.infoDictionary objectForKey:@"center"] objectAtIndex:2] floatValue];
}
return roundf(([self maxZoom] + [self minZoom]) / 2);
}
- (NSString *)uniqueTilecacheKey
{
return [NSString stringWithFormat:@"MapBox-%@-%@", [self.infoDictionary objectForKey:@"id"], [self.infoDictionary objectForKey:@"version"]];
}
- (NSString *)shortName
{
return [self.infoDictionary objectForKey:@"name"];
}
- (NSString *)longDescription
{
return [self.infoDictionary objectForKey:@"description"];
}
- (NSString *)shortAttribution
{
return [self.infoDictionary objectForKey:@"attribution"];
}
- (NSString *)longAttribution
{
return [self shortAttribution];
}
@end