Hi,

How to get the directions between two locations in different
languages?

We have implemented Google maps as:

var directionsService = new google.maps.DirectionsService();

var request = {
   origin: startAddress,
   destination: '${storeAddr.address1}, ${storeAddr.city}, $
{storeAddr.state}, ${storeAddr.zipCode}',
   language: 'fr',
   travelMode: google.maps.DirectionsTravelMode.DRIVING
};

directionsService.route(request, function(result, status)

But still the directions are appearing in english language.

Do i need to specify the language some where else or in some other
manner.

Please help.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to