So, I am making a geocoded callback like this:
var geocoder = new google.maps.Geocoder(); geocoder.geocode({'latLng': foundLoc});
I want to add a language parameter to it. If I made a direct entry to the geocoding URL, I would just add &language=us or something to the end, but how do I do this?
source share