This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ios] Replaced MGLMapView redeclaration with internal header
- Loading branch information
Showing
4 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#import <Mapbox/Mapbox.h> | ||
|
||
@interface MGLMapView (Internal) | ||
|
||
/** Triggers another render pass even when it is not necessary. */ | ||
- (void)setNeedsGLDisplay; | ||
|
||
/** Returns whether the map view is currently loading or processing any assets required to render the map */ | ||
- (BOOL)isFullyLoaded; | ||
|
||
/** Empties the in-memory tile cache. */ | ||
- (void)didReceiveMemoryWarning; | ||
|
||
@end |