1//
2//  AIRGoogleMapURLTileManager.m
3//  Created by Nick Italiano on 11/5/16.
4//
5
6#ifdef HAVE_GOOGLE_MAPS
7
8#import "AIRGoogleMapUrlTileManager.h"
9#import "AIRGoogleMapUrlTile.h"
10
11@interface AIRGoogleMapUrlTileManager()
12
13@end
14
15@implementation AIRGoogleMapUrlTileManager
16
17RCT_EXPORT_MODULE()
18
19- (UIView *)view
20{
21  AIRGoogleMapUrlTile *tileLayer = [AIRGoogleMapUrlTile new];
22  return tileLayer;
23}
24
25RCT_EXPORT_VIEW_PROPERTY(urlTemplate, NSString)
26RCT_EXPORT_VIEW_PROPERTY(zIndex, int)
27RCT_EXPORT_VIEW_PROPERTY(maximumZ, NSInteger)
28RCT_EXPORT_VIEW_PROPERTY(minimumZ, NSInteger)
29RCT_EXPORT_VIEW_PROPERTY(flipY, BOOL)
30
31@end
32
33#endif
34