1//
2//  AIRGoogleMapHeatmapManager.m
3//
4//  Created by David Cako on 29 April 2018.
5//
6
7#import "AIRGoogleMapHeatmapManager.h"
8#import "AIRGoogleMapHeatmap.h"
9#import "AIRGoogleMap.h"
10#import <React/RCTBridge.h>
11#import <React/UIView+React.h>
12
13@interface AIRGoogleMapHeatmapManager()
14
15@end
16
17@implementation AIRGoogleMapHeatmapManager
18
19RCT_EXPORT_MODULE()
20
21- (UIView *)view
22{
23  AIRGoogleMapHeatmap *heatmap = [AIRGoogleMapHeatmap new];
24  return heatmap;
25}
26
27RCT_EXPORT_VIEW_PROPERTY(points, NSArray<NSDictionary *>)
28RCT_EXPORT_VIEW_PROPERTY(radius, NSUInteger)
29RCT_EXPORT_VIEW_PROPERTY(opacity, float)
30RCT_EXPORT_VIEW_PROPERTY(gradient, NSDictionary *)
31
32@end