ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript-Google地图本地化

2019-12-08 15:35:29  阅读:427  来源: 互联网

标签:google-maps geolocation javascript


如何告诉Google Map的Geocoder API使用英语而不是浏览器的默认languange?

例如,
用户的操作系统语言是法语,当他使用网站并查询伦敦时,它将返回angleterre,londres

有没有办法强制地理编码返回EN_GB语言环境?因此它返回:英国,伦敦.

并且如果用户是中文,它将返回所有中文.如何避免这种情况?

请帮忙!

谢谢,

解决方法:

Google Geocode API

您可以设置语言参数

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

返回中文

标签:google-maps,geolocation,javascript
来源: https://codeday.me/bug/20191208/2092432.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有