单个页面上的可变数量的 Google 地图

发布于 2024-12-11 18:39:00 字数 159 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

何以心动 2024-12-18 18:39:00

是的。在 JavaScript 中使用数组。像这样的事情:

    var mapObjects;

    function geAllMapDivs() {
        var allDivs = document.getElementsByTagName('DIV'), i, L;
        var mapDivs = [];
        for(i=0, L=allDivs.length; i<L; i++) {
            if (allDivs[i].id.substring(0,4) == "map_") {
                mapDivs.push(allDivs[i]);
            }
        }
        return mapDivs;
    }

    function createMaps() {
        var mapDivs = getAllMapDivs(), i, L;
        mapObjects = [];
        for(i=0, L=mapDivs.length; i<L; i++) {
            mapObjects.push(new google.maps.Map(mapDivs[i], myOptions)); 
        }
    }

Yes. Use arrays in javascript. Something like this:

    var mapObjects;

    function geAllMapDivs() {
        var allDivs = document.getElementsByTagName('DIV'), i, L;
        var mapDivs = [];
        for(i=0, L=allDivs.length; i<L; i++) {
            if (allDivs[i].id.substring(0,4) == "map_") {
                mapDivs.push(allDivs[i]);
            }
        }
        return mapDivs;
    }

    function createMaps() {
        var mapDivs = getAllMapDivs(), i, L;
        mapObjects = [];
        for(i=0, L=mapDivs.length; i<L; i++) {
            mapObjects.push(new google.maps.Map(mapDivs[i], myOptions)); 
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文