单个页面上的可变数量的 Google 地图
我正在使用 ajax 在页面内加载多个 Google 地图。它们是动态生成的,每页渲染的地图数量各不相同。我找到了问题的部分解决方案
我的解决方案的问题是我没有固定数量的地图。有没有办法动态生成存储地图对象(map1、map2 等)的变量名称?有没有更好的解决方案,不涉及生成变量名称?
I'm loading multiple Google maps inside a page using ajax. They are dynamically generated vary in number of maps rendered per page. I found a partial solution to my problem here.
My problem with the solution is that I don't have a fixed number of maps. Is there a way to dynamically generate the names of the variables that store the map objects (map1, map2, etc)? Is there a better solution that doesn't involve generating variable names?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。在 JavaScript 中使用数组。像这样的事情:
Yes. Use arrays in javascript. Something like this: