如何将 Google Closure UI 组件添加到 Google 地图中的控件?
我正在创建一个使用谷歌地图(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.