首页 > 其他 > 详细

first

时间:2015-10-09 13:55:11      阅读:185      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!