我正在尝试扩展GMSMapView以创建一些群集功能,我需要检测用户星星移动地图以禁用群集渲染并在完成时再次重新启用它。
我压倒了touchesbegan和touchesended,但touchesbegan只被召唤一次。 在重写hittest之后,我能够看到GMSVectorMapView处理GMSMapView触摸,如果我更改了此函数的返回,则地图不会移动。
有没有办法捕获此事件或在用户与地图交互时提供一些操作。
最诚挚的问候, Marlon Pina Tojal
答案 0 :(得分:10)
我不确定我是否完全理解您需要检测什么,或者为什么/如何检测它们。但是,由于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;
然后我创建了一个平移手势识别器并将其添加到theMapView
的手势识别器属性中。我确保使用选择器方法self
didPan:
// 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
}
答案 1 :(得分:1)
最新更新是Google地图中有一种委托方法
- (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate;