//// ICRNavigationViewController.h// XFFruit//// Created by freecui on 15/4/24.// Copyright (c) 2015年 Xummer. All rights reserved.//#import <UIKit/UIKit.h>#import "BMapKit.h"#import "ICRStore.h"@interfaceICRNavigationViewController:UIViewController<BMKMapViewDelegate,BMKRouteSearchDelegate,BMKLocationServiceDelegate,BMKGeoCodeSearchDelegate>{BMKMapView*_mapView;IBOutletUITextField*_startAddrText;IBOutletUITextField*_endAddrText;BMKRouteSearch*_routesearch;BMKLocationService*_locService;BMKGeoCodeSearch*_geocodesearch;}@property(strong,nonatomic)NSString*mylocationCityName;@property(strong,nonatomic)NSString*mylocationName;@property(strong,nonatomic)NSString*mylocationLongitude;@property(strong,nonatomic)NSString*mylocationLatitude;@property(strong,nonatomic)ICRStore*m_currentStore;@property(weak,nonatomic)IBOutletUIButton*btnBusSearch;@property(weak,nonatomic)IBOutletUIButton*btnDriveSearch;@property(weak,nonatomic)IBOutletUIButton*btnWalkSearch;-(IBAction)onClickBusSearch:(UIButton*)sender;-(IBAction)onClickDriveSearch:(UIButton*)sender;-(IBAction)onClickWalkSearch:(UIButton*)sender;-(IBAction)textFiledReturnEditing:(id)sender;@end