I use google.maps.places.Autocomplete object and always get results in Ukrainian.
I load such a library
http://maps.google.com/maps/api/js?sensor=true&libraries=places&language=en-US
how to transfer parameters to autocomplete language?
var autocomplete = new google.maps.places.Autocomplete($("#google_places_ac")[0], {}); google.maps.event.addListener(autocomplete, 'place_changed', function() { var place = autocomplete.getPlace(); $scope.location = place.formatted_address; // at that point $scope.location is in ukrainen, but I want Russian $scope.$apply(); });
I added an image explaining the problem. The text that is squared with RED is in Russian, the text with Green is in Ukraine. As you can see, on one map there are two different languages. Also introduced with Russian and formatted language with Ukrainian. I believe this is a Google map.s error

javascript autocomplete google-maps google-maps-api-3
yu.pitomets
source share