-1

チェンナイのエリアに5つの注釈を追加したMapViewを持っいます。注釈がはっきりと見えるように、MapViewの読み込みが開始されたらすぐにチェンナイをズームアウトしたいと思います。viewDidLoadの場合:

CLLocationCoordinate2D location6;
    location6.latitude=12.9758;
    location6.longitude=80.2205;
    MapAnnotation *ann6=[[MapAnnotation alloc]initWithTitle:@"Chennai-Velacherry" andCoordinate:location6];
    [mapView addAnnotation:ann6];

     CLLocationCoordinate2D centerlocation;
    centerlocation.longitude=13.0810;
    centerlocation.longitude=80.2740;


    [mapView setCenterCoordinate:centerlocation animated:NO];
     [self.view addSubview:mapView];
4

4 に答える 4

0

事前定義されたズームレベルのセットを持つことはできません。MKMapView代わりに、 usingの表示領域を設定できますMKCoordinateRegion。サンプルコードはこちらから入手できます。

于 2012-09-06T09:03:37.133 に答える
0

あなたはこのようにそれを行うことができます:

次のような関数を作成します。

-(void)zoomToFitMapAnnotations:(MKMapView*)mv {

CLLocationCoordinate2D topLeftCoord;

topLeftCoord.latitude = -90;

topLeftCoord.longitude = 180;

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

for(MKAnnotations* annotation in mv.annotations)
{
   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 = [mv regionThatFits:region];
[mv setRegion:region animated:YES];

}

そして、すべてのピンがプロットされた後、viewDidLoadでこの関数を呼び出します

于 2012-09-06T09:08:07.970 に答える
0

これを試して

#define kMAPSPAN 1600

MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 1*kMAPSPAN, 1*kMAPSPAN);
MKCoordinateRegion adjustedRegion = [mapView regionThatFits:viewRegion];
[_mapView setRegion:adjustedRegion animated:YES]; 

mapViewはMKMapViewオブジェクトであり、kMAPSPANは必要に応じて設定でき、zoomLocationはチェンナイのcoordinate2Dロケーションです。

于 2012-09-06T09:09:07.733 に答える
0

これを使って、

        MKCoordinateRegion region = { {0.0, 0.0 }, { 0.0, 0.0 } }; 
        region.center.latitude = [currentPlace.latitude doubleValue];
        region.center.longitude = [currentPlace.longitude doubleValue];
        region.span.longitudeDelta = 0.03f; 
        region.span.latitudeDelta = 0.03f;
        [mapView setRegion:region animated:YES]; 
        [mapView setDelegate:self];
        mapView.zoomEnabled = YES;
        mapView.scrollEnabled = NO;

これらはズームレベルを変化させます、

        region.span.longitudeDelta = 0.03f; 
        region.span.latitudeDelta = 0.03f;
于 2012-09-06T09:14:28.383 に答える