react-native-maps 2.0.0-beta.7 → 2.0.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -299,11 +299,7 @@ import MapView, { PROVIDER_GOOGLE } from 'react-native-maps'
299
299
  >
300
300
  ```
301
301
 
302
- Then add the AirGoogleMaps directory:
303
-
304
- https://github.com/react-native-maps/react-native-maps/blob/1e71a21f39e7b88554852951f773c731c94680c9/docs/installation.md#ios
305
-
306
- An unofficial step-by-step guide is also available at https://gist.github.com/heron2014/e60fa003e9b117ce80d56bb1d5bfe9e0
302
+ Then update your Podfile and add the Google API key as described in the [installation docs](docs/installation.md#ios).
307
303
 
308
304
  ### MapView Events
309
305
 
@@ -213,7 +213,9 @@ public class MapTileProvider implements TileProvider {
213
213
  } catch (Exception e) {
214
214
  e.printStackTrace();
215
215
  }
216
- } else if (image == null && !this.offlineMode) {
216
+ }
217
+
218
+ if (image == null && !this.offlineMode) {
217
219
  Log.d("urlTile", "Normal fetch");
218
220
  image = fetchTile(x, y, zoom);
219
221
  if (image == null) {
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "main": "lib/index.js",
6
6
  "author": "Leland Richardson <leland.m.richardson@gmail.com>",
7
7
  "homepage": "https://github.com/react-native-maps/react-native-maps#readme",
8
- "version": "2.0.0-beta.7",
8
+ "version": "2.0.0-beta.8",
9
9
  "license": "MIT",
10
10
  "scripts": {
11
11
  "lint": "eslint . --max-warnings 0",