如何告诉Google Map的Geocoder API使用英语而不是浏览器的默认languange?
例如,
用户的操作系统语言是法语,当他使用网站并查询伦敦时,它将返回angleterre,londres
有没有办法强制地理编码返回EN_GB语言环境?因此它返回:英国,伦敦.
并且如果用户是中文,它将返回所有中文.如何避免这种情况?
请帮忙!
谢谢,
解决方法:
您可以设置语言参数
language (optional) — The language in
which to return results. See the
supported list of domain languages.
Note that we often update supported
languages so this list may not be
exhaustive. If language is not
supplied, the geocoder will attempt to
use the native language of the domain
from which the request is sent
wherever possible.The map controls, tooltips, and
copyrights have been translated for a
subset of languages, listed in the
spreadsheet below. The API will sense
the browser settings of the user and
set the language appropriately. It is
possible to override the language in
the APIs; more information is
available in the JavaScript API
documentation and the Flash API
reference.
例如:
http://maps.googleapis.com/maps/api/geocode/json?address=japan&sensor=false&language=en
以英文返回
http://maps.googleapis.com/maps/api/geocode/json?address=japan&sensor=false&language=zh-CN
返回中文