如何从谷歌地图获取当前缩放级别的ios?

时间:2013-07-31 14:06:05

标签: ios google-maps zoom cllocationmanager

我使用具有数字值的方法相机:

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];
}

但如果我通过触摸更改它,我怎么能获得当前缩放?

4 个答案:

答案 0 :(得分:32)

好的,我找到解决方案, 获取当前缩放:

CGFloat currentZoom = self.MapView.camera.zoom;

然后在相机中使用它:

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

答案 1 :(得分:3)

如果要在用户与地图交互时检测缩放级别。 我们可以使用Google Map委托方法

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

别忘了添加 GMSMapViewDelegate

答案 2 :(得分:2)

您也可以使用animateToZoom。

self.mapView.animateToZoom(10)

答案 3 :(得分:2)

我为迅速4.x支付的2美分:

let currZoom = self.googleMapView.camera.zoom

与第一个objC示例一样,BUT是Float,而不是CGFloat。 在Swift中,浮动不是CGFloat。