5

次のコードを使用してマップビューをズームしているので、すべての注釈が最適なズームレベルで同時にビューに表示されます。しかし、IOS 6では、ズームレベルに問題があるようです。いくつかのケースをテストしたところ、1。連絡先が米国にある場合、地図が読み込まれると、他の場所でズームされていることがわかりました。2.ズームレベルは英国エリアでは正しいようです(私がテストした限り)。3.英国と米国の両方からの連絡先を含めると、英国の連絡先は正しくズームされますが、米国の連絡先は表示されません。ただし、わずかにスワイプすると、すべての連絡先がビューに収まり、適切にズームされます。

-(void)zoomToFitMapAnnotations:(MKMapView*)mapViews insideArray:(NSArray*)anAnnotationArray
{ 
if([mapViews.annotations count] == 0) return;

CLLocationCoordinate2D topLeftCoord;
topLeftCoord.latitude = -90;
topLeftCoord.longitude = 180;

CLLocationCoordinate2D bottomRightCoord;
bottomRightCoord.latitude = 90;
bottomRightCoord.longitude = -180;

for(MKPointAnnotation* annotation in anAnnotationArray)
{
    topLeftCoord.longitude = fmin(topLeftCoord.longitude, annotation.coordinate.longitude);
    topLeftCoord.latitude = fmax(topLeftCoord.latitude, annotation.coordinate.latitude);

    bottomRightCoord.longitude = fmax(bottomRightCoord.longitude, annotation.coordinate.longitude);
    bottomRightCoord.latitude = fmin(bottomRightCoord.latitude, annotation.coordinate.latitude);
}

MKCoordinateRegion region;
region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.5;
region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.5;
region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * 1.1; // Add a little extra space on the sides
region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * 1.1; // Add a little extra space on the sides

region = [mapViews regionThatFits:region];
[mapView setRegion:region animated:YES];
}

注釈付きのマップビューをロードした後、ランダムなケースで次のログを取得します

<GEOTileSource: 0x108f6470>: Error downloading tiles Server Error: Error Domain=GEOErrorDomain Code=-204 "The operation couldn’t be completed. (GEOErrorDomain error -204.)" UserInfo=0x18a5b9c0 {UnderlyingErrors=(
"Error Domain=GEOErrorDomain Code=-204 \"The operation couldn\U2019t be completed. (GEOErrorDomain error -204.)\""
)}

これの理由は何であり、どうすれば修正できますか?グーグルした後、役立つものは何も見つかりませんでした。

このズームの不一致の特定のパターンを特定することはできません。上記のコードは、以前のバージョンのIOSでは正常に機能しています。

4

1 に答える 1

2

私はあなたの質問にほとんど報奨金を提供しましたが、iOS6の新しいマップでは、ズームアウトして全世界を見ることができないことに気付きました(マップアプリで自分で試してみてください)。forループをコメントアウトしてこれをログに記録することで把握できる最大ズームレベルがあります。

NSLog(@"region.span.latitudeDelta = %f", region.span.latitudeDelta);
NSLog(@"longitudeDelta = %f", region.span.longitudeDelta);

[map setRegion:region animated:NO];

NSLog(@"region.span.latitudeDelta = %f", map.region.span.latitudeDelta);
NSLog(@"longitudeDelta = %f", map.region.span.longitudeDelta);

出力は次のようになります。

region.span.latitudeDelta = 179.283409
longitudeDelta = 360.000000
region.span.latitudeDelta = 76.269114
longitudeDelta = 98.437499
于 2012-10-24T13:36:50.987 に答える