RMCompositeSource.h
1.03 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
//
// RMCompositeSource.h
// MapView
//
// Created by Justin Miller on 4/19/12.
// Copyright (c) 2012 MapBox / Development Seed. All rights reserved.
//
#import "RMTileSource.h"
@interface RMCompositeSource : NSObject <RMTileSource>
{
RMFractalTileProjection *tileProjection;
}
@property (nonatomic, retain) NSMutableArray *compositeSources;
- (id)initWithTileSource:(id <RMTileSource>)initialTileSource;
- (UIImage *)imageForTile:(RMTile)tile inCache:(RMTileCache *)tileCache;
- (void)cancelAllDownloads;
- (RMFractalTileProjection *)mercatorToTileProjection;
- (RMProjection *)projection;
- (float)minZoom;
- (void)setMinZoom:(NSUInteger)aMinZoom;
- (float)maxZoom;
- (void)setMaxZoom:(NSUInteger)aMaxZoom;
- (int)tileSideLength;
- (void)setTileSideLength:(NSUInteger)aTileSideLength;
- (RMSphericalTrapezium)latitudeLongitudeBoundingBox;
- (NSString *)uniqueTilecacheKey;
- (NSString *)shortName;
- (NSString *)longDescription;
- (NSString *)shortAttribution;
- (NSString *)longAttribution;
- (void)didReceiveMemoryWarning;
@end