Files
gcole 3a12bb4fb8 Make offline packs more robust.
- Separate the access token initialization and offline maps
  initialization.
- Make the initialization functions return promise so that the consumer
  code can know when mapbox and the offline packs are ready to be used.
- Expose setConnected method.
- Update docs.
2017-08-08 10:20:56 -07:00

21 lines
457 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