react-native-maps-directions
react-native-maps-directions copied to clipboard
How do I get written directions?
Normally when you request the directions API, it returns a html_directions object that you can use to show the directions written like "Turn left on 200m", is there any way to get it using this lib?
@cacacaio try looking at the legs object in the onReady Method
onReady={ result => { result.legs[0]['steps'] } }