无法从放置在 GMSMapView 顶部的 UIButtons 接收触摸事件

Can't receive touch events from UIButtons placed ontop of GMSMapView

我正在尝试在 google 地图上放置一些静态 UI 按钮,例如按钮。

目前我拥有的屏幕

UI查看
- GMSMapView
- UI查看
- UI按钮

我更改了第二个 UIView 的 layer.zPosition,以便显示视图和按钮,但我无法从 UIButton 接收任何触摸事件 (touchupinside) .

根据您的设置,您不必更改 UIView.zPosition。当您添加第二个 UIView 时,我会再次查看您的代码中的要点,因为如果 GMSMapViewUIView 将位于同一子视图中,您调用每个视图的顺序将很重要等级。

意思是,UIView 可能会被 GMSMapView 的某层遮挡。 (请注意,GMSMapView层由几层组成,GMSUISettings层很可能正在拦截按钮的触摸事件)

我使用 google 的示例代码 (see here) 加上 UIView 和 UIButton 的代码制作了一个非常简单的测试应用程序:

- (void)viewDidLoad {
     [super viewDidLoad];

     // Exact google code
     GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
                                                        longitude:151.20
                                                             zoom:6];
     mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
     mapView_.myLocationEnabled = YES;
     self.view = mapView_;

     // Creates a marker in the center of the map.
     GMSMarker *marker = [[GMSMarker alloc] init];
     marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
     marker.title = @"Sydney";
     marker.snippet = @"Australia";
     marker.map = mapView_;

    // UIView code
    UIView * buttonView = [[UIView alloc] initWithFrame:CGRectMake(25, 25, 150, 100)];
    [buttonView setBackgroundColor:[UIColor redColor]];
    [mapView_ addSubview:buttonView];

    // UIButton code
    UIButton * tapMe = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [tapMe setFrame:CGRectMake(10, 10, 100, 50)];
    [tapMe setTitle:@"Tap me" forState:UIControlStateNormal];
    [tapMe setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    [tapMe setBackgroundColor: [UIColor blueColor]];
    [tapMe addTarget:self action:@selector(tapButton:)      
                forControlEvents:UIControlEventTouchUpInside];
    [buttonView addSubview:tapMe];
}

其他可能的修复 您可以尝试在实例化 GMSMapView:

后添加以下代码
    GMSUISettings * settings = mapView_.settings;
    [settings setConsumesGesturesInView:NO];

如果有层拦截触摸,setConsumesGesturesInView: 应该与 cancelsTouchesInView 具有相同的效果,因为尽管位于 GMSUISettings 层之后,您的按钮仍将接收触摸事件.


我的样品是什么样的: