私はこのようなデジタル値のメソッドカメラを使用しています:
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];
}
しかし、タッチで変更した場合、現在のズームを取得するにはどうすればよいですか?
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;
ユーザーが地図を操作しているときにズームレベルを検出する場合。 Googleマップデリゲートメソッドを使用できます
func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
let zoom = mapView.camera.zoom
print("map zoom is ",String(zoom))
}
追加するのを忘れないでくださいGMSMapViewDelegate
AnimateToZoomを使用することもできます。
self.mapView.animateToZoom(10)
Swift 4.xの2セント:
let currZoom = self.googleMapView.camera.zoom
しかし、最初のobjCサンプルのように、CGFloatではなくFloatです。 In Swift FloatはCGFloatではありません。