7

我正在尝试扩展 GMSMapView 以创建一些聚类功能,并且我需要检测用户何时移动地图以禁用聚类渲染并在完成后重新启用它。

我覆盖了 touchesbegan 和 touchesended 但 touchesbegan 只被调用一次。在覆盖 hittest 之后,我能够看到 GMSVectorMapView 处理 GMSMapView 触摸,如果我更改此函数的返回,则地图不会移动。

当用户与地图交互时,是否有任何方法可以捕获此事件或执行某些操作。

最好的问候,马龙皮娜托贾尔

4

2 回答 2

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 
}
于 2013-07-01T00:12:30.353 回答
1

最新更新是谷歌地图中有一个委托方法

- (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate;
于 2015-07-13T12:17:52.417 回答