Google Maps GeoCoding always uses browser language

I use the google ajax api downloader and want to get all the information in German so I download api maps like this

google.load("maps", "2", {language : "de"});

I tried deu, ger, de, de_DE and even en and ja_JP, but to no avail.

For those who do not understand my problem: http://dl.getdropbox.com/u/5910/Jing/2008-11-24_2018.png you can try it at http://apps.komola.de/gmaps.htm The address is English on the English browser and German on the German browser.

+2
source share
1 answer

This API document identifies map localization restrictions for http://code.google.com/apis/maps/documentation/#Localization

, , ( ..), base_domain . base_domain google.de .

<script src="http://www.google.com/jsapi?key=KEYHERE" type="text/javascript"></script>

<script type="text/javascript">
     google.load("maps", "2",{language: "de",base_domain: 'google.de'});
     ...
</script>

base_domain. http://code.google.com/apis/ajax/documentation/#GoogleLoad

+3

All Articles