摘要:
1、用[_searchdrivingSearch:nilstartNode:start endCity:nilendNode:end]; 方法查询公交路线 返回错误码 1002013-05-22 23:46:47.264 Travel[938:907] 公交查询的城市是====济南2013-05-22 23:46:47.267 Travel[938:907] 公交路线起点坐标====36.708721,117.1251142013-05-22 23:46:47.269 Travel[938:907] 公交路线终点坐标====36.849457,117.3918612013-05-22 23:. 阅读全文
摘要:
参考:http://www.2cto.com/kf/201207/138950.html 写的比较实在,可以看看初始化方法1: CLLocationCoordinate2D startPt = (CLLocationCoordinate2D){0, 0}; //纬度,经度 CLLocationCoordinate2D endPt = (CLLocationCoordinate2D){0, 0};初始化方法2:CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);//纬度,经度... 阅读全文
摘要:
//百度地图删除地图上所有的标注和所有的覆盖物NSArray* array = [NSArrayarrayWithArray:_mapView.annotations];[_mapViewremoveAnnotations:array];array = [NSArrayarrayWithArray:_mapView.overlays];[_mapViewremoveOverlays:array]; 阅读全文
摘要:
再A类中存储数据configData = [NSUserDefaultsstandardUserDefaults];[configData setObject:@"1" forKey:@"11"];[configData setObject:@"2" forKey:@"12"];[configData synchronize]; //强制存储数据再B类中读取数据 configData = [NSUserDefaults standardUserDefaults]; NSString *strLat = [confi 阅读全文
摘要:
- (void)viewDidLoad { NSLog(@"进入GRailwayController.m的viewDidLoad方法"); [super viewDidLoad]; zoomLevel = 3.0f;//启动BMKMapManager bmkMapManager = [[BMKMapManager alloc]init]; BOOL ret = [bmkMapManager start:@"2772BD5CAFF652491F65707D6D5E9ABEBF3639CC" generalDelegate:self]; if (!ret) 阅读全文
摘要:
/** 用户位置更新后,会调用此函数 @param mapView 地图View @param userLocation 新的用户位置 在实际使用中,只需要 [mapView setShowsUserLocation:YES]; mapView.delegate = self; 两句代码就可以启动下面的方法。疑问,为什么我的位置没有移动的情况下,这个方法循环被调用呢? */- (void)mapView:(BMKMapView *)mapView didUpdateUserLocation:(BMKUserLocation *)userLocation{ if (... 阅读全文
摘要:
除了高内聚,松耦合之外,我们还应该追求:思路的快速回馈。开发人员能够快速地找回他以前的思路。 阅读全文
摘要:
初始化:CGPoint pt = CGPointMake(90,90);注意,pt是一个结构体,不是对象,所以不用加*。 阅读全文
摘要:
思路:用scrollview的偏移量来实现以下代码运行成功#import <UIKit/UIKit.h>@interface MainViewController : UIViewController<UIScrollViewDelegate>{ //上面的scrollview UIScrollView *scrollView0; UIPageControl *pageControl0; //页面控制控件 tag 已在xib文件中设置为0 NSMutableArray *arrImageViews; //相当于datasource ... 阅读全文