/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
- //
- // FlipsideViewController.h
- // SampleMap : Diagnostic map
- //
- #import <UIKit/UIKit.h>
- #import "RMMapView.h"
- @interface FlipsideViewController : UIViewController {
- IBOutlet UITextField *centerLatitude;
- IBOutlet UITextField *centerLongitude;
- IBOutlet UITextField *zoomLevel;
- IBOutlet UITextField *minZoom;
- IBOutlet UITextField *maxZoom;
- }
- @property(nonatomic,retain) IBOutlet UITextField *centerLatitude;
- @property(nonatomic,retain) IBOutlet UITextField *centerLongitude;
- @property(nonatomic,retain) IBOutlet UITextField *zoomLevel;
- @property(nonatomic,retain) IBOutlet UITextField *minZoom;
- @property(nonatomic,retain) IBOutlet UITextField *maxZoom;
- - (RMMapContents *)contents;
- - (IBAction)clearSharedNSURLCache;
- - (IBAction)clearMapContentsCachedImages;
- @end