27 lines
461 B
Mathematica
27 lines
461 B
Mathematica
|
//
|
||
|
// AIRGoogleMapURLTileManager.m
|
||
|
// Created by Nick Italiano on 11/5/16.
|
||
|
//
|
||
|
|
||
|
#import "AIRGoogleMapUrlTileManager.h"
|
||
|
#import "AIRGoogleMapUrlTile.h"
|
||
|
|
||
|
@interface AIRGoogleMapUrlTileManager()
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation AIRGoogleMapUrlTileManager
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
AIRGoogleMapUrlTile *tileLayer = [AIRGoogleMapUrlTile new];
|
||
|
return tileLayer;
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(urlTemplate, NSString)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(zIndex, int)
|
||
|
|
||
|
@end
|