I'm trying to add an UIGestureRecognizer to one the whole google map view.
I want to get notified if i touch the map ( not the marker ), but i don't know how. what i did is this inside viewDidLoad:
UITapGestureRecognizer* tapRec = [[UITapGestureRecognizer alloc]
initWithTarget:self action:@selector(didTapMap:)];
[mapView_ addGestureRecognizer:tapRec];
and outside viewDidLoad:
- (void)didTapMap:(UITapGestureRecognizer *)recognizer {
NSLog(@"Touched map");
}
but this method don't work and don't print anything on the console window..
please help me and show me how to do it please