如何将 Google Closure UI 组件添加到 Google 地图中的控件?

发布于 2024-12-08 16:57:54 字数 94 浏览 0 评论 0原文

我正在创建一个使用谷歌地图(API V3)的应用程序。但是,它不允许我向代表地图自定义控件的 DIV 添加任何 Closure UI 组件。有人对如何执行此操作有任何提示吗?

I am creating an application which uses a google map, V3 of the API. However it does not let me add any Closure UI components to the DIVs which represent the Custom Controls of the map. Has anyone got any hints on how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

素罗衫 2024-12-15 16:57:54

Google 地图允许您添加任意元素作为控件。例如:

map.controls[google.maps.ControlPosition.TOP_LEFT].push(element);

您所引用的该元素可以使用 Closure 进行装饰或渲染,就像您所做的那样任何其他。我用过这个,效果很好。

Google Maps lets you add arbitrary elements as controls. For example:

map.controls[google.maps.ControlPosition.TOP_LEFT].push(element);

That element, which you have a reference to, can be decorated or rendered into using Closure, as you would any other. I've used this and it works great.

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