react-native-steerpath-smart-map 1.17.6 → 1.17.8
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 +9 -0
- package/dist/SmartMapView.web.js +6 -6
- package/package.json +2 -2
- package/src/SmartMapView.web.tsx +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,15 @@ 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.17.7]
|
|
19
|
+
- Update web sdk
|
|
20
|
+
|
|
21
|
+
# [1.17.6]
|
|
22
|
+
- Better default values for camera animations
|
|
23
|
+
|
|
24
|
+
# [1.17.5]
|
|
25
|
+
- Localization updates to example app and updated documentation
|
|
26
|
+
|
|
18
27
|
# [1.17.4] - 2022-11-10
|
|
19
28
|
|
|
20
29
|
- Bump Android Smart SDK to version android-smart-1.15.2
|
package/dist/SmartMapView.web.js
CHANGED
|
@@ -105,9 +105,9 @@ export var SmartMapView = forwardRef(function (props, ref) {
|
|
|
105
105
|
latitude,
|
|
106
106
|
longitude,
|
|
107
107
|
zoomLevel,
|
|
108
|
-
bearing
|
|
109
|
-
pitch
|
|
110
|
-
floorIndex
|
|
108
|
+
bearing,
|
|
109
|
+
pitch,
|
|
110
|
+
floorIndex,
|
|
111
111
|
buildingRef,
|
|
112
112
|
]);
|
|
113
113
|
},
|
|
@@ -167,9 +167,9 @@ export var SmartMapView = forwardRef(function (props, ref) {
|
|
|
167
167
|
latitude,
|
|
168
168
|
longitude,
|
|
169
169
|
zoomLevel,
|
|
170
|
-
bearing
|
|
171
|
-
pitch
|
|
172
|
-
floorIndex
|
|
170
|
+
bearing,
|
|
171
|
+
pitch,
|
|
172
|
+
floorIndex,
|
|
173
173
|
buildingRef,
|
|
174
174
|
]);
|
|
175
175
|
},
|
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.17.
|
|
4
|
+
"version": "1.17.8",
|
|
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": "^2.2.
|
|
27
|
+
"steerpath-smart-sdk": "^2.2.5"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"react": "^16.5.0",
|
package/src/SmartMapView.web.tsx
CHANGED
|
@@ -166,9 +166,9 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
|
|
|
166
166
|
latitude,
|
|
167
167
|
longitude,
|
|
168
168
|
zoomLevel,
|
|
169
|
-
bearing
|
|
170
|
-
pitch
|
|
171
|
-
floorIndex
|
|
169
|
+
bearing,
|
|
170
|
+
pitch,
|
|
171
|
+
floorIndex,
|
|
172
172
|
buildingRef,
|
|
173
173
|
]);
|
|
174
174
|
},
|
|
@@ -236,9 +236,9 @@ export const SmartMapView = forwardRef<SmartMapViewMethods, SmartMapViewProps>(
|
|
|
236
236
|
latitude,
|
|
237
237
|
longitude,
|
|
238
238
|
zoomLevel,
|
|
239
|
-
bearing
|
|
240
|
-
pitch
|
|
241
|
-
floorIndex
|
|
239
|
+
bearing,
|
|
240
|
+
pitch,
|
|
241
|
+
floorIndex,
|
|
242
242
|
buildingRef,
|
|
243
243
|
]);
|
|
244
244
|
},
|