Javascript OpenLayers:Google 层行为与语言
我在谷歌图层上的城市名称有问题。根据浏览器语言,它会自动选择该语言的城市名称。
我在这里尝试过语言设置: http://dev.openlayers.org/releases/OpenLayers-2.11/doc/apidocs/files/OpenLayers/Lang-js.html#OpenLayers.Lang.setCode
但没有任何效果。也许我做错了?如何将此设置应用于当前地图对象?
例如,如果语言是英语,城镇名称将为 Riga,但如果是俄语,则为 Рига。 是否有可能以某种方式关闭此行为或强制仅使用英文地图,因为当我在一张地图上设置标记时,它在另一张地图上看起来不同。
导致标记文本重叠等等。
谢谢。
I'm having problem with City names on the google layer. Depending on browser language it's automatically pick the names of Cities on this language.
I have tried language setting here:
http://dev.openlayers.org/releases/OpenLayers-2.11/doc/apidocs/files/OpenLayers/Lang-js.html#OpenLayers.Lang.setCode
But have no effect. Maybe i'm doing it wrong? How to apply this setting on current map object?
For example if language is english town name will be Riga, but if russian, then Рига.
Is it possible somehow to turn this behavior off or force english only map, because when i set markers on one map, it looks different on another.
Resulting marker overlapping text and so on.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是文档中的答案:
Google Maps API 在显示文本信息(例如地图上的控件名称、版权声明、行车路线和标签)时使用浏览器的首选语言设置。在大多数情况下,这是更可取的;您通常不希望覆盖用户的首选语言设置。但是,如果您希望更改 Maps API 以忽略浏览器的语言设置并强制其以特定语言显示信息,则可以在包含 Maps API javascript 代码时向标记添加可选语言参数,指定要使用的语言。
例如,要以日语显示地图 API 应用程序,请将 &language=ja 添加到标记中
,如下所示:
注意:以上述方式加载 API 将为所有用户使用日语,无论用户偏好如何。在设置此选项之前,请确保您希望出现此行为。
因此,在您的情况下,您应该在加载谷歌地图 api 时添加 language=en 参数。
Here's the answer from documentation:
The Google Maps API uses the browser's preferred language setting when displaying textual information such as the names for controls, copyright notices, driving directions and labels on maps. In most cases, this is preferable; you usually do not wish to override the user's preferred language setting. However, if you wish to change the Maps API to ignore the browser's language setting and force it to display information in a particular language, you can add an optional language parameter to the tag when including the Maps API javascript code, specifying the language to use.
For example, to display a Maps API application in Japanese, add &language=ja to the
tag as shown below:
Note: loading the API in the manner shown above will use the Japanese language for all users regardless of user preferences. Be sure you wish this behavior before setting this option.
So in your case you should add language=en parameter when you load google maps api.