File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
android/src/main/java/com/google/android/react/navsdk Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -756,14 +756,16 @@ private void registerLocationListener() {
756756 @ Override
757757 public void onLocationChanged (final Location location ) {
758758 if (mIsListeningRoadSnappedLocation ) {
759- sendCommandToReactNative ("onLocationChanged" , ObjectTranslationUtil .getMapFromLocation (location ));
759+ sendCommandToReactNative (
760+ "onLocationChanged" , ObjectTranslationUtil .getMapFromLocation (location ));
760761 }
761762 }
762763
763764 @ Override
764765 public void onRawLocationUpdate (final Location location ) {
765766 if (mIsListeningRoadSnappedLocation ) {
766- sendCommandToReactNative ("onRawLocationChanged" , ObjectTranslationUtil .getMapFromLocation (location ));
767+ sendCommandToReactNative (
768+ "onRawLocationChanged" , ObjectTranslationUtil .getMapFromLocation (location ));
767769 }
768770 }
769771 };
You can’t perform that action at this time.
0 commit comments