web-dev-qa-db-ja.com

iOS用のグーグルマップから現在のズームレベルを取得するにはどうすればよいですか?

私はこのようなデジタル値のメソッドカメラを使用しています:

camera = [GMSCameraPosition cameraWithLatitude:37.35 longitude:-122.0 zoom:6];

タイマーを使って現在の位置で地図を自動的に再描画する必要があります。

-(void)gmapRedraw{
    NSLog(@"gmapRedraw");
//    self.MapView.camera
    [locationManager startUpdatingLocation];
    NSLog(@"lat %f, lon %f", locationManager.location.coordinate.latitude, locationManager.location.coordinate.longitude);
    camera = [GMSCameraPosition cameraWithLatitude:locationManager.location.coordinate.latitude//37.36//-37.81319//-33.86
                                         longitude:locationManager.location.coordinate.longitude//-122.0//144.96298//151.20
                                              zoom:6];
    self.MapView.camera = camera;
}

-(void)timer{
    [NSTimer scheduledTimerWithTimeInterval:0.5
                                     target:self
                                   selector:@selector(gmapRedraw)
                                   userInfo:nil
                                    repeats:YES];
}

しかし、タッチで変更した場合、現在のズームを取得するにはどうすればよいですか?

20
strx86

OK、解決策を見つけて、現在のズームを取得します。

CGFloat currentZoom = self.MapView.camera.zoom;

そしてそれをカメラで使用します:

camera = [GMSCameraPosition cameraWithLatitude:locationManager.location.coordinate.latitude
                                     longitude:locationManager.location.coordinate.longitude
                                          zoom:currentZoom];
self.MapView.camera = camera;
33
strx86

ユーザーが地図を操作しているときにズームレベルを検出する場合。 Googleマップデリゲートメソッドを使用できます

func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
    let zoom = mapView.camera.zoom
    print("map zoom is ",String(zoom))
}

追加するのを忘れないでくださいGMSMapViewDelegate

3
Muhammad Nayab

AnimateToZoomを使用することもできます。

self.mapView.animateToZoom(10)
2
Varuna

Swift 4.xの2セント:

let currZoom = self.googleMapView.camera.zoom

しかし、最初のobjCサンプルのように、CGFloatではなくFloatです。 In Swift FloatはCGFloatではありません。

2
ingconti