Guest User

Untitled

a guest
Dec 15th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2. #import <MapKit/MapKit.h>
  3. #import <CoreLocation/CoreLocation.h>
  4.  
  5. #define METERS_PER_MILE 1609.344
  6. #define GEO_COORD_LAT 34.16
  7. #define GEO_COORD_LONG -118.0
  8.  
  9. @interface iosTestPhaseViewController : UIViewController<MKMapViewDelegate, CLLocationManagerDelegate> {
  10.  
  11. MKMapView *_mapView;
  12. CLLocationManager *_locationManager;
  13.  
  14. CLLocationCoordinate2D _coordinate;
  15. }
  16.  
  17. @property (nonatomic, retain) IBOutlet MKMapView *mapView;
  18. @property (assign) CLLocationCoordinate2D coordinate;
  19. @property (nonatomic, retain) CLLocationManager *locationManager;
  20.  
  21. @end
Add Comment
Please, Sign In to add comment