1 //
2 // Created by Leland Richardson on 12/27/15.
3 // Copyright (c) 2015 Facebook. All rights reserved.
4 //
5 
6 #import <Foundation/Foundation.h>
7 #import <React/RCTView.h>
8 
9 
10 @interface AIRMapCallout : RCTView
11 
12 @property (nonatomic, assign) BOOL tooltip;
13 @property (nonatomic, copy) RCTBubblingEventBlock onPress;
14 @property (nonatomic, assign) BOOL alphaHitTest;
15 
16 - (BOOL) isPointInside:(CGPoint)pointInCallout;
17 
18 @end
19