Ich benutze Methode Kamera mit digitalem Wert wie folgt aus:Wie bekomme ich die aktuelle Zoomstufe von Google Map für iOS?
camera = [GMSCameraPosition cameraWithLatitude:37.35 longitude:-122.0 zoom:6];
und ich brauche automatisch Karte mit aktuellen Position über Timer neu zu zeichnen:
-(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];
}
aber wie kann ich aktuelle Zoom, wenn ich es über ändern berühren?