bramus / react-native-maps-directions

Directions Component for `react-native-maps`
MIT License
1.24k stars 196 forks source link

How do I get written directions? #183

Open cacacaio opened 2 years ago

cacacaio commented 2 years ago

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?

asherguedalia commented 1 year ago

@cacacaio try looking at the legs object in the onReady Method

onReady={ result => { result.legs[0]['steps'] } }