Auto Start Navigation With React Native Google Maps Directions Package
Answer : The react-native-maps-directions uses the Directions API to display routes. Please note that Directions API doesn't include any real-time navigation, it is meant only to show routes. The real-time navigation additionally is prohibited in the Google Maps APIs. Have a look at the Google Maps API Terms of Service paragraph 10.4 (c, iii). It reads No navigation. You will not use the Service or Content for or in connection with (a) real-time navigation or route guidance; or (b) automatic or autonomous vehicle control. source: https://developers.google.com/maps/terms#10-license-restrictions In order to be compliant with Google Maps API Terms of Service you should open the Google Maps app installed in your device using the Google Maps URLs in navigation mode. var url = "https://www.google.com/maps/dir/?api=1&travelmode=driving&dir_action=navigate&destination=Los+Angeles"; Linking.canOpenURL(url).then(supported => { if (!supported) {...