Как указано в справочнике API :
The Geocoding API defines a geocoding request using the following URL parameters:
- language (optional) — The language in which to return results. See the supported list of domain languages. Note that we often update supported languages so this list may not be exhaustive. If language is not supplied, the geocoder will attempt to use the native language of the domain from which the request is sent wherever possible.
Однако указание параметра language
, похоже, не имеет эффекта (протестировано с Firefox 8, IE 9 и Chrome 15).
new google.maps.Geocoder().geocode({
'latLng' : new google.maps.LatLng(position.coords.latitude, position.coords.longitude),
'language': 'en'},
function(results, status) {}
);