/MapView/Map/RMTileMapServiceSource.h
http://github.com/route-me/route-me · C Header · 18 lines · 7 code · 4 blank · 7 comment · 0 complexity · 528022ab5abec83faadba9d575830bbf MD5 · raw file
- //
- // TileMapServiceSource.h
- // Images
- //
- // Created by Tracy Harton on 02/06/09
- // Copyright 2009 Tracy Harton. All rights reserved.
- //
- #import "RMAbstractMercatorWebSource.h"
- @interface RMTileMapServiceSource : RMAbstractMercatorWebSource <RMAbstractMercatorWebSource>
- {
- NSString *host, *key;
- }
- -(id) init: (NSString*) _host uniqueKey: (NSString*) _key minZoom: (float) _minZoom maxZoom: (float) _maxZoom;
- @end