-
- (void)locationManager:(CLLocationManager *)manager
-
didUpdateToLocation:(CLLocation *)newLocation
-
fromLocation:(CLLocation *)oldLocation
-
{
-
if (!gaocoder) {
-
gaocoder = [[MKReverseGeocoder alloc]initWithCoordinate:newLocation.coordinate];
-
gaocoder.delegate =self;
-
[gaocoder start];
-
}
-
-
showmapview.region=MKCoordinateRegionMake(self.bestloaction.coordinate, MKCoordinateSpanMake(0.005f, 0.005f));
-
showmapview.showsUserLocation=YES;
-
showmapview.zoomEnabled=NO;
-
-
if (!self.bestloaction)self.bestloaction=newLocation;
-
else if (newLocation.horizontalAccuracy<bestloaction.horizontalAccuracy)
-
self.bestloaction=newLocation;
-
-
latitudeString= [[NSString alloc] initWithFormat:@"%g",newLocation.coordinate.latitude];
-
-
-
NSLog(@"string one:%@",latitudeString);
-
[latitudeString release];
-
longitudeString = [[NSString alloc]initWithFormat:@"%g",newLocation.coordinate.longitude];
-
NSLog(@"string two:%@",longitudeString);
-
[longitudeString release];
-
-
-
- }
如何使用Core Location获取当前的位置和GPS的坐标呢?
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Cesium获取当前点击位置坐标
获取点击坐标一般情况下有三种,分别是获取椭球面上的坐标,或者开启地形图以后的坐标,
cesium 点击事件 获取位置 坐标 Math -
获取当前位置的坐标
运行截图 MainActivity.jav...
android ide xml bundle ico