mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-30 20:41:08 +00:00
26 lines
429 B
Objective-C
26 lines
429 B
Objective-C
//
|
|
// RCTMGLVectorSourceManager.m
|
|
// RCTMGL
|
|
//
|
|
// Created by Nick Italiano on 9/8/17.
|
|
// Copyright © 2017 Mapbox Inc. All rights reserved.
|
|
//
|
|
|
|
#import "RCTMGLVectorSourceManager.h"
|
|
#import "RCTMGLVectorSource.h"
|
|
|
|
@implementation RCTMGLVectorSourceManager
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(id, NSString);
|
|
|
|
- (UIView*)view
|
|
{
|
|
return [RCTMGLVectorSource new];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(url, NSString);
|
|
|
|
@end
|