我正在尝试扩展GMSMapView以创建一些集群功能,我需要检测用户星星移动地图以禁用集群渲染并在完成时再次重新启用它.
我压倒了touchesbegan和touchesended,但touchesbegan只被召唤一次.
在重写hittest后,我能够看到GMSVectorMapView处理GMSMapView触摸,如果我更改此函数的返回,则地图不会移动.
有没有办法捕获此事件或在用户与地图交互时提供一些操作.
最好的祝福,
Marlon Pina Tojal
解决方法
我不确定我是否完全理解你需要检测什么,或者为什么/如何检测它们.但是,由于touchesbegan,我在GMSMapView上检测用户平移手势时遇到了类似的问题:只调用一次.
我有自己的“当前位置”按钮,让用户可以打开/关闭地图上的地图.我需要找出用户何时“平移”地图而不中断地图对平移的接收(我仍然希望地图也可以平移).
首先,我创建了地图:
// Creates Map centered at current location GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:theLocationManager.location.coordinate.latitude Longitude:theLocationManager.location.coordinate.longitude zoom:15]; theMapView = [GMSMapView mapWithFrame:CGRectZero camera:camera]; theMapView.myLocationEnabled = YES; theMapView.delegate = self; theMapView.camera = camera; self.view = theMapView;
然后我创建了一个平移手势识别器并将其添加到MapView的手势识别器属性中.我确保使用选择器方法didPan将目标设置为self:
// Watch for pan UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget: self action:@selector(didPan:)]; theMapView.gestureRecognizers = @[panRecognizer];
最后,在同一个主文件中,我实现了didPan:方法,以便在用户平移时做出反应:
- (void) didPan:(UIPanGestureRecognizer*) gestureRecognizer { NSLog(@"DID PAN"); // React here to user's pan }