Having placeId I need to get place details. I can do this with the following code:
var service = new google.maps.places.PlacesService(document.createElement("div"));
service.getDetails({
placeId: locationReference
}, parseLocationDetailResponse.bind(null, function(addressObject) {
deferred.resolve(addressObject);
}));
How can I manually specify language for place details object?
Google maps provides list of languages you need. Simple adding the
&language=(type of language)
in scriptscr