次のコードを使用してマップビューをズームしているので、すべての注釈が最適なズームレベルで同時にビューに表示されます。しかし、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では正常に機能しています。