OStack程序员社区-中国程序员成长平台

标题: iOS map 显示特定城市的中心 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:46
标题: iOS map 显示特定城市的中心

我正在使用 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-推荐答案


不直接。有 no api 像 MKGetClosestCapitalTo(userLocation)

但是

您可以使用用户的位置进行反向地理编码,然后使用城市名称对地址进行地理编码 => 这样您就可以到达市中心。

所以:

  1. 地址 = reversegeocode(userLocation)
  2. loc = geocode(address.cityName)
  3. 将 map 缩放到该位置

(你已经有 1,所以只需执行 2 和 3 ;))

关于iOS map 显示特定城市的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20820913/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4