Javascript OpenLayers:Google 层行为与语言

发布于 2024-12-14 12:46:13 字数 506 浏览 2 评论 0原文

我在谷歌图层上的城市名称有问题。根据浏览器语言,它会自动选择该语言的城市名称。

我在这里尝试过语言设置: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心头的小情儿 2024-12-21 12:46:13

以下是文档中的答案:

Google Maps API 在显示文本信息(例如地图上的控件名称、版权声明、行车路线和标签)时使用浏览器的首选语言设置。在大多数情况下,这是更可取的;您通常不希望覆盖用户的首选语言设置。但是,如果您希望更改 Maps API 以忽略浏览器的语言设置并强制其以特定语言显示信息,则可以在包含 Maps API javascript 代码时向标记添加可选语言参数,指定要使用的语言。
例如,要以日语显示地图 API 应用程序,请将 &language=ja 添加到标记中

<script>

,如下所示:

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&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

<script>

tag as shown below:

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&language=ja">

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文