// // AIRGoogleMapCalloutManager.m // AirMaps // // Created by Gil Birman on 9/6/16. // // #ifdef HAVE_GOOGLE_MAPS #import "AIRGoogleMapCalloutManager.h" #import "AIRGoogleMapCallout.h" #import @implementation AIRGoogleMapCalloutManager RCT_EXPORT_MODULE() - (UIView *)view { AIRGoogleMapCallout *callout = [AIRGoogleMapCallout new]; return callout; } RCT_EXPORT_VIEW_PROPERTY(tooltip, BOOL) RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock) RCT_EXPORT_VIEW_PROPERTY(alphaHitTest, BOOL) @end #endif