RMTileSourcesContainer.h
920 Bytes
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
//
// RMTileSourcesContainer.h
// MapView
//
// Created by Thomas Rasch on 21.06.12.
// Copyright (c) 2012 Alpstein. All rights reserved.
//
#import "RMTileSource.h"
@interface RMTileSourcesContainer : NSObject
- (NSArray *)tileSources;
- (BOOL)setTileSource:(id <RMTileSource>)tileSource;
- (BOOL)addTileSource:(id <RMTileSource>)tileSource;
- (BOOL)addTileSource:(id<RMTileSource>)tileSource atIndex:(NSUInteger)index;
- (void)removeTileSource:(id <RMTileSource>)tileSource;
- (void)removeTileSourceAtIndex:(NSUInteger)index;
- (void)moveTileSourceAtIndex:(NSUInteger)fromIndex toIndex:(NSUInteger)toIndex;
- (void)removeAllTileSources;
- (void)cancelAllDownloads;
- (RMFractalTileProjection *)mercatorToTileProjection;
- (RMProjection *)projection;
- (float)minZoom;
- (float)maxZoom;
- (int)tileSideLength;
- (RMSphericalTrapezium)latitudeLongitudeBoundingBox;
- (void)didReceiveMemoryWarning;
@end