/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

  1. //
  2. // TileMapServiceSource.h
  3. // Images
  4. //
  5. // Created by Tracy Harton on 02/06/09
  6. // Copyright 2009 Tracy Harton. All rights reserved.
  7. //
  8. #import "RMAbstractMercatorWebSource.h"
  9. @interface RMTileMapServiceSource : RMAbstractMercatorWebSource <RMAbstractMercatorWebSource>
  10. {
  11. NSString *host, *key;
  12. }
  13. -(id) init: (NSString*) _host uniqueKey: (NSString*) _key minZoom: (float) _minZoom maxZoom: (float) _maxZoom;
  14. @end