bramus / react-native-maps-directions

Directions Component for `react-native-maps`
MIT License
1.25k stars 197 forks source link

Need Distance in miles #163

Open MadhavNasit opened 3 years ago

MadhavNasit commented 3 years ago

I need distance between origin and destination in miles instead of km any props or any way that i can achieve that?

Sheharyar566 commented 3 years ago

@MadhavNasit basic maths is the way to go. To get the distance in miles rather than kilometers, simply divide the km distance by 1.609 (just saw the formula sort of thingie on Google 😅)

MadhavNasit commented 3 years ago

@MadhavNasit basic maths is the way to go. To get the distance in miles rather than kilometers, simply divide the km distance by 1.609 (just saw the formula sort of thingie on Google 😅)

Yes but prop would be great for package. They are converting miles from api into km, so they can return miles as it is too.