react-native-steerpath-smart-map 1.12.6 → 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 +19 -0
- package/android/bin/.settings/org.eclipse.buildship.core.prefs +1 -1
- package/android/bin/build.gradle +1 -1
- package/android/build.gradle +1 -1
- package/dist/SmartMapView.js +2 -2
- package/package.json +2 -2
- package/react-native-steerpath-smart-map.podspec +1 -1
- package/src/SmartMapView.tsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,25 @@ 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
|
+
|
|
29
|
+
## [1.12.8] - 2021-10-27
|
|
30
|
+
|
|
31
|
+
- Bump iOS Smart SDK to 1.15.4
|
|
32
|
+
|
|
33
|
+
## [1.12.7] - 2021-10-25
|
|
34
|
+
- Bump Web SDK to steerpath-smart-sdk 1.7.2
|
|
35
|
+
- Bug fix for setCamera and animateCamera methods
|
|
36
|
+
|
|
18
37
|
## [1.12.6] - 2021-10-01
|
|
19
38
|
|
|
20
39
|
- Bump Android Smart SDK to android-smart-1.11.5
|
|
@@ -5,7 +5,7 @@ connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
|
|
|
5
5
|
connection.project.dir=
|
|
6
6
|
eclipse.preferences.version=1
|
|
7
7
|
gradle.user.home=
|
|
8
|
-
java.home=/Library/Java/JavaVirtualMachines/
|
|
8
|
+
java.home=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home
|
|
9
9
|
jvm.arguments=
|
|
10
10
|
offline.mode=false
|
|
11
11
|
override.workspace.settings=true
|
package/android/bin/build.gradle
CHANGED
|
@@ -59,7 +59,7 @@ repositories {
|
|
|
59
59
|
|
|
60
60
|
dependencies {
|
|
61
61
|
implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
|
|
62
|
-
implementation "com.steerpath:smart:android-smart-1.11.
|
|
62
|
+
implementation "com.steerpath:smart:android-smart-1.11.5"
|
|
63
63
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
64
64
|
implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
|
|
65
65
|
}
|
package/android/build.gradle
CHANGED
|
@@ -59,7 +59,7 @@ repositories {
|
|
|
59
59
|
|
|
60
60
|
dependencies {
|
|
61
61
|
implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
|
|
62
|
-
implementation "com.steerpath:smart:android-smart-1.
|
|
62
|
+
implementation "com.steerpath:smart:android-smart-1.12.1"
|
|
63
63
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
64
64
|
implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
|
|
65
65
|
}
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-steerpath-smart-map",
|
|
3
3
|
"title": "React Native Steerpath Smart Map",
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.10",
|
|
5
5
|
"description": "Steerpath SmartMapView for React Native",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"licenseFilename": "LICENSE",
|
|
25
25
|
"readmeFilename": "README.md",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"steerpath-smart-sdk": "^1.
|
|
27
|
+
"steerpath-smart-sdk": "^1.8.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"react": "^16.5.0",
|
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
|
]);
|