I would like to be able to add a marker with a title that has only non-ASCII characters:
marker = map.addMarker(
new MarkerOptions()
.title("אני")
.position(latlng)
);
Unfortunately the tile doesn't show up, only an empty info window. First I thought that there is a problem with the Hebrew characters in general, but they seem to be fine, because if there's ASCII text in the BEGINNING of the title, then it works:
.title("me אני")
However it doesn't when the Hebrew is in the beginning:
.title("אני me")