react-native-maps-directions icon indicating copy to clipboard operation
react-native-maps-directions copied to clipboard

How do I get written directions?

Open cacacaio opened this issue 3 years ago • 1 comments

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 avatar Feb 23 '22 16:02 cacacaio

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

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

asherguedalia avatar Mar 12 '23 19:03 asherguedalia