//申请定位权限- (void) initlocation { if(nil ==_locationmanager) { _locationmanager = [[cllocationmanager alloc] init]; } if([[[uidevicecurrentdevice] systemversion] floatvalue] >= 8.0) { [_locationmanager requestalwaysauthorization]; } } //初始化mapview - (void) initmapview{ //构造mkmapview _mapview =[[mkmapview alloc] initwithframe:cgrectmake(0, 21,cgrectgetwidth(self.view.bounds), cgrectgetheight(self.view.bounds))]; _mapview.delegate= self; _mapview.showsuserlocation= yes;//显示定位图标 [_mapviewsetusertrackingmode:mkusertrackingmodefollow];//设置定位模式 //将mapview添加到subview中 [self.viewaddsubview:_mapview]; }
用户登录
还没有账号?立即注册
用户注册
投稿取消
文章分类: |
|
还能输入300字
上传中....