@maplibre/maplibre-react-native 8.6.0-beta.1 → 8.6.0-beta.2

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
@@ -78,10 +78,6 @@ diverged, it has become necessary to separate the projects into specific wrapper
78
78
  - [CustomHttpHeaders](/docs/CustomHttpHeaders.md)
79
79
  - [Logger](/docs/Logger.md)
80
80
 
81
- ## Expo Support
82
-
83
- This package is not available in the [Expo Go](https://expo.io/client) app. Learn how you can use it with [custom dev clients](/plugin/install.md).
84
-
85
81
  ## Contributing / local development
86
82
 
87
83
  Read the [CONTRIBUTING.md](CONTRIBUTING.md) guide in order to get familiar with how we do things around here and
@@ -22,7 +22,7 @@ This quickstart guide provides a zero-to-map intro, and from there you can check
22
22
  If you don't have an existing React Native project, create one:
23
23
 
24
24
  ```shell
25
- npx react-native init MyApp --version 0.68
25
+ npx react-native init MyApp
26
26
  ```
27
27
 
28
28
  TODO: See if latest version works
@@ -46,7 +46,7 @@ npm install @maplibre/maplibre-react-native --save
46
46
  ### Review platform specific info
47
47
 
48
48
  Check out the installation guide(s) for additional information about platform-specific setup, quirks,
49
- and steps requried before running.
49
+ and steps required before running.
50
50
 
51
51
  - [Android](/android/install.md)
52
52
  - [iOS](/ios/install.md)
package/ios/install.md CHANGED
@@ -7,8 +7,8 @@ Add the following to your `ios/Podfile`:
7
7
 
8
8
  ```ruby
9
9
  post_install do |installer|
10
- $RNMBGL.post_install(installer)
11
10
  ... other post install hooks
11
+ $RNMBGL.post_install(installer)
12
12
  end
13
13
  ```
14
14
 
@@ -24,6 +24,14 @@ pod install
24
24
 
25
25
  You are good to go!
26
26
 
27
+ ## Note on iOS Simulator issues
28
+
29
+ MapLibre GL Native has some issues on iOS Simulators in many
30
+ environments. The map either does not render at all or appears garbled when panning and zooming.
31
+ It is best to test on a real device if at all possible at this time
32
+ until this is fixed upstream. iOS devs can open the workspace in Xcode and run from there.
33
+
34
+
27
35
  ## Installing a specific version
28
36
 
29
37
  The current default MapLibre version is `5.12.2`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maplibre/maplibre-react-native",
3
3
  "description": "A MapLibre GL Native plugin for creating maps in React Native",
4
- "version": "8.6.0-beta.1",
4
+ "version": "8.6.0-beta.2",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/plugin/install.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Expo installation
2
2
 
3
- > This package cannot be used in the "Expo Go" app because [it requires custom native code](https://docs.expo.io/workflow/customizing/).
3
+ NOTE: This package cannot be used in the "Expo Go" app because [it requires custom native code](https://docs.expo.io/workflow/customizing/).
4
4
 
5
5
  First install the package with `yarn`, `npm`, or [`expo install`](https://docs.expo.io/workflow/expo-cli/#expo-install).
6
6