菜鸟教程小白 发表于 2022-12-13 05:46:29

iOS map 显示特定城市的中心


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

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

<pre><code>// this delegate is called when the app successfully finds your current location
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{

    CLGeocoder *geocoder = [ init] ;
    [geocoder reverseGeocodeLocation:self.locationManager.location
                   completionHandler:^(NSArray *placemarks, NSError *error) {
                     NSLog(@&#34;reverseGeocodeLocation:completionHandler: Completion Handler called!&#34;);

                     if (error){
                           NSLog(@&#34;Geocode failed with error: %@&#34;, error);
                           return;

                     }


                     CLPlacemark *placemark = ;

                     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);

                     ;


                     NSString *location = ;

                     NSLog(@&#34;%@&#34;, location);

                   }];

}
</code></pre>

<p>这很好用,但我真正想做的是放大到城市本身的中心,而不是用户的位置。 </p>

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

<p>否则,有人知道解决方法吗?那太好了,谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不直接。有 <strong>no</strong> api 像 <code>MKGetClosestCapitalTo(userLocation)</code> </p>

<p>但是</p>

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

<p>所以:</p>

<ol>
<li>地址 = reversegeocode(userLocation)</li>
<li>loc = geocode(address.cityName)</li>
<li>将 map 缩放到该位置</li>
</ol>

<p>(你已经有 1,所以只需执行 2 和 3 ;))</p></p>
                                   
                                                <p style="font-size: 20px;">关于iOSmap 显示特定城市的中心,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20820913/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20820913/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS map 显示特定城市的中心