码迷,mamicode.com
首页 > 其他好文 > 详细

first

时间:2015-10-09 13:57:20      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

 1 //处理位置坐标更新
 2 - (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
 3 {
 4     NSLog(@"didUpdateUserLocation lat %f,long %f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude);
 5     [_locService stopUserLocationService];
 6     
 7     _mapView.showsUserLocation = YES;//显示定位图层
 8 //    [_mapView updateLocationData:userLocation];
 9     _mapView.centerCoordinate = userLocation.location.coordinate;
10     
11     _location = userLocation.location.coordinate;
12     
13     [self search:userLocation];
14 }

 

first

标签:

原文地址:http://www.cnblogs.com/kingmon/p/4863623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!