1#import "AIRGoogleMapOverlayManager.h"
2#import "AIRGoogleMapOverlay.h"
3
4@interface AIRGoogleMapOverlayManager()
5
6@end
7
8@implementation AIRGoogleMapOverlayManager
9
10RCT_EXPORT_MODULE()
11
12- (UIView *)view
13{
14  AIRGoogleMapOverlay *overlay = [AIRGoogleMapOverlay new];
15  overlay.bridge = self.bridge;
16  return overlay;
17}
18
19RCT_REMAP_VIEW_PROPERTY(bounds, boundsRect, NSArray)
20RCT_REMAP_VIEW_PROPERTY(bearing, bearing, double)
21RCT_REMAP_VIEW_PROPERTY(image, imageSrc, NSString)
22RCT_REMAP_VIEW_PROPERTY(opacity, opacity, CGFloat)
23
24@end
25