Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
Needs more info comment that > 10 days [ID: 963198]
Comment such as: SPAM, non-actionable [ID: 963127]
Resolved actionable follow-up comments [ID: 963027]
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
<script src="
script code:
<script type="text/javascript">
var sityOptions = {
'hintContent': 'город Одесса',
'center': [ 46.484579,30.732597 ],
'lat': 46.484579,
'lon': 30.732597
}
function initAutocomplete() {
var input_street = document.getElementById('street');
var options = {
componentRestrictions: {country: 'UA'},
types: ['geocode']
};
street = new google.maps.places.Autocomplete(input_street, options);
street.addListener('place_changed', fillInAddressStreet);
var circle = new google.maps.Circle({
center: {
lat: sityOptions.lat,
lng: sityOptions.lon
},
radius: 10000
});
street.setBounds(circle.getBounds());
}
function fillInAddressStreet() {
var place = street.getPlace();
console.log(place);
console.log(
}
</script>
Search is conducted in Odessa, street name "Конная улица" if you select this street it is not selected Russian name but select Ukrainian name
Output to the console:
"Кінна вулиця"
It works on any street. Only selected Ukrainian names, Russian can not be selected, although displaying.