我正在使用 MapKit 和 CoreLocation 来查找用户位置,然后将其显示在 map 上。
我正在使用此代码来显示城市和州(这是我感兴趣的,而不是确切的位置)。
// this delegate is called when the app successfully finds your current location
- (void)locationManagerCLLocationManager *)manager didUpdateToLocationCLLocation *)newLocation fromLocationCLLocation *)oldLocation
{
CLGeocoder *geocoder = [[CLGeocoder alloc] init] ;
[geocoder reverseGeocodeLocation:self.locationManager.location
completionHandler:^(NSArray *placemarks, NSError *error) {
NSLog(@"reverseGeocodeLocation:completionHandler: Completion Handler called!");
if (error){
NSLog(@"Geocode failed with error: %@", error);
return;
}
CLPlacemark *placemark = [placemarks objectAtIndex:0];
CLLocationCoordinate2D zoomLocation;
zoomLocation.latitude = placemark.region.center.latitude;
zoomLocation.longitude= placemark.region.center.longitude;
MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, METERS_PER_MILE * 2, METERS_PER_MILE * 2);
[self.mapView setRegion:viewRegion animated:NO];
NSString *location = [NSString stringWithFormat"%@, %@", placemark.locality, placemark.administrativeArea];
NSLog(@"%@", location);
}];
}
这很好用,但我真正想做的是放大到城市本身的中心,而不是用户的位置。
我可以访问某种属性来执行此操作吗?
否则,有人知道解决方法吗?那太好了,谢谢!
Best Answer-推荐答案 strong>
不直接。有 no api 像 MKGetClosestCapitalTo(userLocation)
但是
您可以使用用户的位置进行反向地理编码,然后使用城市名称对地址进行地理编码 => 这样您就可以到达市中心。
所以:
- 地址 = reversegeocode(userLocation)
- loc = geocode(address.cityName)
- 将 map 缩放到该位置
(你已经有 1,所以只需执行 2 和 3 ;))
关于iOS map 显示特定城市的中心,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20820913/
|