1//
2//  AIRGoogleMapCalloutManager.m
3//  AirMaps
4//
5//  Created by Gil Birman on 9/6/16.
6//
7//
8
9#ifdef HAVE_GOOGLE_MAPS
10
11#import "AIRGoogleMapCalloutManager.h"
12#import "AIRGoogleMapCallout.h"
13#import <React/RCTView.h>
14
15@implementation AIRGoogleMapCalloutManager
16RCT_EXPORT_MODULE()
17
18- (UIView *)view
19{
20  AIRGoogleMapCallout *callout = [AIRGoogleMapCallout new];
21  return callout;
22}
23
24RCT_EXPORT_VIEW_PROPERTY(tooltip, BOOL)
25RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock)
26RCT_EXPORT_VIEW_PROPERTY(alphaHitTest, BOOL)
27
28@end
29
30#endif
31