From a257ddbf314c11b9a98e78cbe28fbcd64f943700 Mon Sep 17 00:00:00 2001 From: Lisa Oppermann Date: Wed, 13 Oct 2021 15:43:00 +0200 Subject: [PATCH] refactor: run yarn generate --- docs/OfflineManager.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/OfflineManager.md b/docs/OfflineManager.md index 72bdd91ba..539f7dcb3 100644 --- a/docs/OfflineManager.md +++ b/docs/OfflineManager.md @@ -177,7 +177,7 @@ await MapboxGL.offlineManager.mergeOfflineRegions(path); #### setTileCountLimit(limit) -Sets the maximum number of Mapbox-hosted tiles that may be downloaded and stored on the current device.
The Mapbox Terms of Service prohibits changing or bypassing this limit without permission from Mapbox. +Sets the maximum number of Mapbox-hosted tiles that may be downloaded and stored on the current device.
The Mapbox Terms of Service prohibit changing or bypassing this limit without permission from Mapbox. ##### arguments | Name | Type | Required | Description | @@ -193,7 +193,7 @@ MapboxGL.offlineManager.setTileCountLimit(1000); #### setProgressEventThrottle(throttleValue) -Sets the value at which download status events will be sent over the React Native bridge.
These events happening very very fast default is 500ms. +Sets the period at which download status events will be sent over the React Native bridge.
The default is 500ms. ##### arguments | Name | Type | Required | Description | @@ -203,7 +203,7 @@ Sets the value at which download status events will be sent over the React Nativ ```javascript -MapboxGL.setProgressEventThrottle(500); +MapboxGL.offlineManager.setProgressEventThrottle(500); ```