1 // 2 // AIRGoogleMapCallout.h 3 // AirMaps 4 // 5 // Created by Gil Birman on 9/6/16. 6 // 7 // 8 9 #ifdef HAVE_GOOGLE_MAPS 10 11 #import <UIKit/UIKit.h> 12 #import <React/RCTView.h> 13 14 @interface AIRGoogleMapCallout : UIView 15 @property (nonatomic, assign) BOOL tooltip; 16 @property (nonatomic, copy) RCTBubblingEventBlock onPress; 17 @property (nonatomic, assign) BOOL alphaHitTest; 18 19 - (BOOL) isPointInside:(CGPoint)pointInCallout; 20 21 @end 22 23 #endif 24