react-native-maps 1.29.0 → 1.29.1
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/android/src/main/java/com/rnmaps/maps/MapGradientPolyline.java +4 -0
- package/android/src/main/java/com/rnmaps/maps/MapHeatmap.java +4 -0
- package/android/src/main/java/com/rnmaps/maps/MapLocalTile.java +4 -0
- package/android/src/main/java/com/rnmaps/maps/MapUrlTile.java +4 -0
- package/package.json +1 -1
|
@@ -328,7 +328,11 @@ public class MapGradientPolyline extends MapFeature {
|
|
|
328
328
|
|
|
329
329
|
@Override
|
|
330
330
|
public void removeFromMap(Object map) {
|
|
331
|
+
if (tileOverlay == null) {
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
331
334
|
tileOverlay.remove();
|
|
335
|
+
tileOverlay = null;
|
|
332
336
|
}
|
|
333
337
|
|
|
334
338
|
public static class MutPoint {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"types": "dist/src/index.d.ts",
|
|
8
8
|
"author": "Leland Richardson <leland.m.richardson@gmail.com>",
|
|
9
9
|
"homepage": "https://github.com/react-native-maps/react-native-maps#readme",
|
|
10
|
-
"version": "1.29.
|
|
10
|
+
"version": "1.29.1",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"lint": "eslint . --max-warnings 0",
|