react-native-steerpath-smart-map 1.12.9 → 1.12.10
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
|
@@ -15,6 +15,17 @@ This package is built on top of Steerpath's Smart SDK, and most of releases are
|
|
|
15
15
|
- [iOS](https://s3-eu-west-1.amazonaws.com/steerpath/ios/releases/smart-sdk-changelog/index.html)
|
|
16
16
|
- [Web](https://s3-eu-west-1.amazonaws.com/steerpath-web-sdk/documentation/smart/latest/index.html)
|
|
17
17
|
|
|
18
|
+
## [1.12.10] - 2021-11-22
|
|
19
|
+
|
|
20
|
+
Special release where search UI is completely disabled on iOS.
|
|
21
|
+
|
|
22
|
+
- Bump iOS Smart SDK to 1.15.6
|
|
23
|
+
- Use default marker of the style when iconImage is not defined in addMarkers or addMarker methods
|
|
24
|
+
## [1.12.9] - 2021-11-12
|
|
25
|
+
|
|
26
|
+
- Bump iOS Smart SDK to 1.15.5
|
|
27
|
+
- Bump Android Smart SDK to android-smart-1.12.1
|
|
28
|
+
|
|
18
29
|
## [1.12.8] - 2021-10-27
|
|
19
30
|
|
|
20
31
|
- Bump iOS Smart SDK to 1.15.4
|
package/dist/SmartMapView.js
CHANGED
|
@@ -28,7 +28,7 @@ export var SmartMapView = forwardRef(function _SmartMapViewFC(props, ref) {
|
|
|
28
28
|
runCommand(smartMapRef.current, "addMarker", [
|
|
29
29
|
smartMapObj,
|
|
30
30
|
layout,
|
|
31
|
-
iconName,
|
|
31
|
+
iconName || "category_marker",
|
|
32
32
|
textColor,
|
|
33
33
|
textHaloColor,
|
|
34
34
|
]);
|
|
@@ -37,7 +37,7 @@ export var SmartMapView = forwardRef(function _SmartMapViewFC(props, ref) {
|
|
|
37
37
|
runCommand(smartMapRef.current, "addMarkers", [
|
|
38
38
|
mapObjectsArray,
|
|
39
39
|
layout,
|
|
40
|
-
iconName,
|
|
40
|
+
iconName || "category_marker",
|
|
41
41
|
textColor,
|
|
42
42
|
textHaloColor,
|
|
43
43
|
]);
|
package/package.json
CHANGED
package/src/SmartMapView.tsx
CHANGED
|
@@ -45,7 +45,7 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
|
|
|
45
45
|
runCommand(smartMapRef.current, "addMarker", [
|
|
46
46
|
smartMapObj,
|
|
47
47
|
layout,
|
|
48
|
-
iconName,
|
|
48
|
+
iconName || "category_marker",
|
|
49
49
|
textColor,
|
|
50
50
|
textHaloColor,
|
|
51
51
|
]);
|
|
@@ -54,7 +54,7 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
|
|
|
54
54
|
runCommand(smartMapRef.current, "addMarkers", [
|
|
55
55
|
mapObjectsArray,
|
|
56
56
|
layout,
|
|
57
|
-
iconName,
|
|
57
|
+
iconName || "category_marker",
|
|
58
58
|
textColor,
|
|
59
59
|
textHaloColor,
|
|
60
60
|
]);
|