react-native-maps 1.23.11 → 1.23.12

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.
@@ -728,4 +728,10 @@ public class MapMarker extends MapFeature {
728
728
  );
729
729
  }
730
730
 
731
+ @Override
732
+ protected void onLayout(boolean changed, int l, int t, int r, int b) {
733
+ super.onLayout(changed, l, t, r, b);
734
+ this.height = b-t;
735
+ this.width = r-l;
736
+ }
731
737
  }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
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": "1.23.11",
8
+ "version": "1.23.12",
9
9
  "license": "MIT",
10
10
  "scripts": {
11
11
  "lint": "eslint . --max-warnings 0",