菜鸟教程小白 发表于 2022-12-13 01:02:11

ios - 根据位置列表将 MKMapView 缩放到最适合距离的缩放级别


                                            <p><p>我有一个中心位置,我希望我的 <code>MKMapView</code> 缩放到一个位置列表(纬度/经度)。我想根据此位置列表设置缩放级别(距离),以便同时在 <code>MKMapView</code> 上看到许多这些位置,但缩放级别最小(或最大distance) 这样我的 <code>MKMapView</code> 就不会缩小太多。</p>

<p>假设我有一个包含 10 个位置的列表,但其中一个位置离我的中心位置太远,如果我在 <code>MKMapView</code> 上显示一个位置,它会被缩小很多, 如何计算 <code>MKCoordinateRegionMakeWithDistance</code> 的距离参数?</p>

<p>我希望我能很好地解释我的问题,我认为我很难解释它。</p>

<p>谢谢<br/>
索伦</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我使用以下解决方案让它工作。</p>

<p>我使用 <a href="http://en.wikipedia.org/wiki/Great-circle_distance" rel="noreferrer noopener nofollow">Great-circle distance</a>公式计算我的中心点和所有找到的纬度/经度点之间的距离,如果这个距离大于我的最小距离和我的最大距离并且大于我的“最后发现的距离”,我将这个距离设置为我的缩放距离.它就像一个魅力,实际上非常简单。</p>

<p>这是我的距离计算代码:</p>

<pre><code>-(double)distanceBetweenLocations:(CLLocationCoordinate2D)c1 :(CLLocationCoordinate2D)c2 {
    int r = 6371 * 1000;//meters
    double dLat = (c2.latitude - c1.latitude) * M_PI / 180;
    double dLon = (c2.longitude - c1.longitude) * M_PI / 180;
    double lat1 = c1.latitude * M_PI / 180;
    double lat2 = c2.latitude * M_PI / 180;

    double a = sin(dLat / 2) * sin(dLat / 2) + sin(dLon / 2) * sin(dLon / 2) * cos(lat1) * cos(lat2);
    double c = 2 * atan2(sqrt(a), sqrt(1 - a));
    double d = r * c;

    return d;
}
</code></pre>

<p>这是我的代码,它根据计算的距离缩放到我的中心点:</p>

<pre><code>-(void)zoomToLocation {
    double MAX_DISTANCE = 10000.0;
    double MIN_DISTANCE = 600.0;

    double zoomDistance = MIN_DISTANCE;

    CLLocationCoordinate2D center;
    center.latitude = self.searchLocationLatitude;
    center.longitude = self.searchLocationLongitude;
    BOOL treaterVisible = NO;
    for (Treater *treater in treaters) {
      CLLocationCoordinate2D c2;
      c2.latitude = treater.latitude;
      c2.longitude = treater.longitude;
      double distance = ;
      if(distance &gt; zoomDistance &amp;&amp; distance &lt; MAX_DISTANCE) {
            zoomDistance = distance;
            treaterVisible = YES;
      }
    }

    if(!treaterVisible) {
      zoomDistance = MAX_DISTANCE;
    }

    CLLocationCoordinate2D location;
    location.latitude = self.searchLocationLatitude;
    location.longitude = self.searchLocationLongitude;

    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(location, zoomDistance, zoomDistance);
    MKCoordinateRegion adjustedRegion = ;
    ;
}
</code></pre>

<p>如果有人需要类似的东西。</p>

<p>最好的问候<br/>
索伦</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 根据位置列表将 MKMapView 缩放到最适合距离的缩放级别,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14772056/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14772056/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 根据位置列表将 MKMapView 缩放到最适合距离的缩放级别