Assigned
Status Update
Comments
ar...@google.com <ar...@google.com> #2
Thanks for your suggestion! We are currently evaluating this request, but do not have any plans to implement it at the moment. Please star to add your vote and receive further updates, and feel free to add any comments to discuss your use case.
ge...@gmail.com <ge...@gmail.com> #3
I've transitioned from this team. Thanks!
ar...@google.com <ar...@google.com> #4
We have verified and logged it internally. Please note that we cannot give you any timelines, but you can star the issue to get notifications.
ge...@gmail.com <ge...@gmail.com> #5
Thank you! I've just starred the issue. In the meanwhile, I'm using a workaround, based on the numeric value.
Description
1. Specify an XHR request with a language: 'iw' parameter.
2. Always get a valid Hebrew response for the 'routes' ('summary' or 'steps').
3. Randomly get an English / Hebrew text inside: 'distance', 'duration' and 'durationWithStops'.
With some requests it might be in English (while it is combined with Hebrew results for the 'routes'):
routes": [
{
"summary": "כביש 4",
"steps": [
"התחל <b>מזרח</b> ב<b>טרומן</b> לכיוון <b>אמיר</b>",
"פנה <b>שמאלה</b> אל <b>החי\"ל</b>",
[*etc...*]
}],
"distance": {
"text": "151 km", // English here
"value": 151286,
"pretty": 151
},
"duration": {
"text": "1 hour 33 mins", // English here
"value": 5566
},
"stopsDuration": {
"text": "",
"value": -239
}
And with other request, get all properties in Hebrew (as expected):
"distance": {
"text": "51.2 ק\"מ", // expected Hebrew
"value": 51186,
"pretty": 51
},
"duration": {
"text": "42 דקות", // expected Hebrew
"value": 2536
},
"stopsDuration": {
"text": "",
"value": -570
},
"durationWithStops": "42 דקות" // expected Hebrew
* The examples here use the same hour & date, but different random origin / destination.
Something is not quite well. Hope you could help with this one. Thanks a lot!