@maplibre/maplibre-react-native 10.0.0-alpha.12 → 10.0.0-alpha.13

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/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ PR Title ([#123](link to my pr))
6
6
 
7
7
  ```
8
8
 
9
+ ## 10.0.0-alpha.13
10
+
11
+ fix: [fix: setMaxAnimationFps on null](<[#440](https://github.com/maplibre/maplibre-react-native/pull/440)>)
12
+
9
13
  ## 10.0.0-alpha.12
10
14
 
11
15
  Specify in install.md the correct SPM variable name to use a different native iOS library version
@@ -68,7 +68,7 @@ public class LocationComponentManager {
68
68
  }
69
69
 
70
70
  public void setPreferredFramesPerSecond(int preferredFramesPerSecond) {
71
- if(preferredFramesPerSecond <= 0) {
71
+ if(mLocationComponent == null || preferredFramesPerSecond <= 0) {
72
72
  return;
73
73
  }
74
74
 
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": "10.0.0-alpha.12",
4
+ "version": "10.0.0-alpha.13",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },