I am using Google Places API to send request for places around me and I set the 'name' parameter to filter by name of place.
The thing is it all works good for latin names, but I want to search for places written in my native language (using cyrillic characters) and when I do so it returns no results. I have tried using a function called encodeURI(string) in javascript but it did not help. Is it even possible to perform this kind of search ?
var request = {
location: new google.maps.LatLng(41.98806, 21.45944),
radius: 50000,
name: 'базен'
};
It works for 'bazen' but it doesn't work for 'базен' (name parameter).