react-native-maps 1.24.1 → 1.24.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 +1 -1
- package/package.json +1 -1
- package/src/MapMarker.tsx +23 -7
- package/src/MapOverlay.tsx +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ See [Setup Instructions for the Included Example Project](docs/examples-setup.md
|
|
|
19
19
|
### Important Notes:
|
|
20
20
|
|
|
21
21
|
- **Fabric is now supported**:
|
|
22
|
-
Fabric is now supported for the latest version of the library, if you don't have Fabric (New Arch) enabled, please use v1.21.0 or earlier
|
|
22
|
+
Fabric is now supported for the latest version of the library, **latest version is strongly recommended** because many regressions appeared after the release of v1.22.0 if you don't have Fabric (New Arch) enabled, please use v1.21.0 or earlier
|
|
23
23
|
|
|
24
24
|
### Version Requirements:
|
|
25
25
|
|
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.24.
|
|
8
|
+
"version": "1.24.2",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"lint": "eslint . --max-warnings 0",
|
package/src/MapMarker.tsx
CHANGED
|
@@ -481,13 +481,29 @@ export class MapMarker extends React.Component<MapMarkerProps> {
|
|
|
481
481
|
);
|
|
482
482
|
}
|
|
483
483
|
|
|
484
|
-
let icon;
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
484
|
+
let icon: any = this.props.icon;
|
|
485
|
+
let image: any = this.props.image;
|
|
486
|
+
|
|
487
|
+
if (this.fabricMarker) {
|
|
488
|
+
if (this.props.image) {
|
|
489
|
+
image = fixImageProp(this.props.image);
|
|
490
|
+
}
|
|
491
|
+
if (this.props.icon) {
|
|
492
|
+
icon = fixImageProp(this.props.icon);
|
|
493
|
+
}
|
|
494
|
+
} else {
|
|
495
|
+
if (this.props.image) {
|
|
496
|
+
image = fixImageProp(this.props.image);
|
|
497
|
+
if (image.uri) {
|
|
498
|
+
image = image.uri;
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
if (this.props.icon) {
|
|
502
|
+
icon = fixImageProp(this.props.icon);
|
|
503
|
+
if (icon.uri) {
|
|
504
|
+
icon = icon.uri;
|
|
505
|
+
}
|
|
506
|
+
}
|
|
491
507
|
}
|
|
492
508
|
|
|
493
509
|
const AIRMapMarker = this.getNativeComponent();
|
package/src/MapOverlay.tsx
CHANGED
|
@@ -32,7 +32,7 @@ export type MapOverlayProps = ViewProps & {
|
|
|
32
32
|
bearing?: number;
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
|
-
* The coordinates for the image (
|
|
35
|
+
* The coordinates for the image (right-top corner, left-bottom corner). ie.```[[lat, long], [lat, long]]```
|
|
36
36
|
*
|
|
37
37
|
* @platform iOS: Supported
|
|
38
38
|
* @platform Android: Supported
|