gpt4 book ai didi

iOS map 显示特定城市的中心

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:44:25 24 4
gpt4 key购买 nike

我正在使用 MapKit 和 CoreLocation 查找用户位置,然后将其显示在 map 上。

我正在使用此代码显示城市和州(这是我感兴趣的,而不是确切的位置)。

// this delegate is called when the app successfully finds your current location
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)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);

}];

}

效果很好,但我真正想做的是放大到城市中心本身,而不是用户位置。

我可以访问某种属性来执行此操作吗?

否则,有人知道解决方法吗?那太好了,谢谢!

最佳答案

不是直接的。没有像 MKGetClosestCapitalTo(userLocation)

这样的 api

但是

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

所以:

  1. 地址 = reversegeocode(userLocation)
  2. loc = geocode(address.cityName)
  3. 缩放 map 到那个地方

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

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com