Skip to content

Commit 02442d3

Browse files
chaitanyadeorukhkarrborn
authored andcommitted
Fixed crash for Android API level below 18 on isFromMockProvider (react-native-maps#2172)
* Add Mock Provider boolean on each location update * Update mapview.md Update docs to specify that coordinate includes mock provider boolean * Check API is 18 or above for isFromMockProvider * Update docs to mention API
1 parent 30daf8f commit 02442d3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/mapview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To access event data, you will need to use `e.nativeEvent`. For example, `onPres
4949
| `onKmlReady` | `KmlContainer` | Callback that is called once the kml is fully loaded.
5050
| `onRegionChange` | `Region` | Callback that is called continuously when the region changes, such as when a user is dragging the map.
5151
| `onRegionChangeComplete` | `Region` | Callback that is called once when the region changes, such as when the user is done moving the map.
52-
| `onUserLocationChange` | `{ coordinate: LatLng }` | Callback that is called when the underlying map figures our users current location (coordinate also includes isFromMockProvider value for Android). Make sure **showsUserLocation** is set to *true* and that the provider is `"google"`.
52+
| `onUserLocationChange` | `{ coordinate: LatLng }` | Callback that is called when the underlying map figures our users current location (coordinate also includes isFromMockProvider value for Android API 18 and above). Make sure **showsUserLocation** is set to *true* and that the provider is `"google"`.
5353
| `onPress` | `{ coordinate: LatLng, position: Point }` | Callback that is called when user taps on the map.
5454
| `onPanDrag` | `{ coordinate: LatLng, position: Point }` | Callback that is called when user presses and drags the map. **NOTE**: for iOS `scrollEnabled` should be set to false to trigger the event
5555
| `onPoiClick` | `{ coordinate: LatLng, position: Point, placeId: string, name: string }` | Callback that is called when user click on a POI.

lib/android/src/main/java/com/airbnb/android/react/maps/AirMapView.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,10 @@ public void onMyLocationChange(Location location){
196196
coordinate.putDouble("altitude", location.getAltitude());
197197
coordinate.putDouble("accuracy", location.getAccuracy());
198198
coordinate.putDouble("speed", location.getSpeed());
199+
if(android.os.Build.VERSION.SDK_INT >= 18){
199200
coordinate.putBoolean("isFromMockProvider", location.isFromMockProvider());
200-
201+
}
202+
201203
event.putMap("coordinate", coordinate);
202204

203205
manager.pushEvent(context, view, "onUserLocationChange", event);

0 commit comments

Comments
 (0)