/samples/SampleMap/Classes/FlipsideViewController.h

http://github.com/route-me/route-me · C Header · 27 lines · 18 code · 5 blank · 4 comment · 0 complexity · 73d2d0057a3c9b25b6084e5adb22dc91 MD5 · raw file

  1. //
  2. // FlipsideViewController.h
  3. // SampleMap : Diagnostic map
  4. //
  5. #import <UIKit/UIKit.h>
  6. #import "RMMapView.h"
  7. @interface FlipsideViewController : UIViewController {
  8. IBOutlet UITextField *centerLatitude;
  9. IBOutlet UITextField *centerLongitude;
  10. IBOutlet UITextField *zoomLevel;
  11. IBOutlet UITextField *minZoom;
  12. IBOutlet UITextField *maxZoom;
  13. }
  14. @property(nonatomic,retain) IBOutlet UITextField *centerLatitude;
  15. @property(nonatomic,retain) IBOutlet UITextField *centerLongitude;
  16. @property(nonatomic,retain) IBOutlet UITextField *zoomLevel;
  17. @property(nonatomic,retain) IBOutlet UITextField *minZoom;
  18. @property(nonatomic,retain) IBOutlet UITextField *maxZoom;
  19. - (RMMapContents *)contents;
  20. - (IBAction)clearSharedNSURLCache;
  21. - (IBAction)clearMapContentsCachedImages;
  22. @end