Files
react-native-mapbox-gl/ios/RCTMapboxGL/RCTMapboxGLManager.h
T

20 lines
456 B
Objective-C

//
// RCTMapboxGLManager.h
// RCTMapboxGL
//
// Created by Bobby Sudekum on 4/30/15.
// Copyright (c) 2015 Mapbox. All rights reserved.
//
#import <React/RCTViewManager.h>
@interface RCTMapboxGLManager : RCTViewManager {
NSMutableSet * _recentPacks;
NSMutableSet * _throttledPacks;
NSMutableArray * _packRequests;
NSMutableSet * _removedPacks;
int _throttleInterval;
BOOL _loadedPacks;
NSMutableSet * _loadingPacks;
}
@end