LocationViewController.h 714 B

123456789101112131415161718192021222324
  1. //
  2. // LocationViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-2-26.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <GoogleMaps/GoogleMaps.h>
  10. #import "LocationDetailViewController.h"
  11. #import "Constant.h"
  12. #import "ApexMobileNetwork.h"
  13. @interface LocationViewController : UIViewController<GMSMapViewDelegate>
  14. @property (strong,nonatomic) NSMutableDictionary * params;
  15. -(void) updateLocation;
  16. -(void) addLocation;
  17. @property (strong,nonatomic) NSArray* Locations;
  18. @property (strong, nonatomic) IBOutlet UIView *mapContainer;
  19. @property BOOL showNavigation;
  20. @property (strong,nonatomic) UINavigationController * aBNewPersonNav;
  21. @end