| 123456789101112131415161718192021222324 |
- //
- // LocationViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-2-26.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <GoogleMaps/GoogleMaps.h>
- #import "LocationDetailViewController.h"
- #import "Constant.h"
- #import "ApexMobileNetwork.h"
- @interface LocationViewController : UIViewController<GMSMapViewDelegate>
- @property (strong,nonatomic) NSMutableDictionary * params;
- -(void) updateLocation;
- -(void) addLocation;
- @property (strong,nonatomic) NSArray* Locations;
- @property (strong, nonatomic) IBOutlet UIView *mapContainer;
- @property BOOL showNavigation;
- @property (strong,nonatomic) UINavigationController * aBNewPersonNav;
- @end
|