3

我已经阅读了其他类似的主题,但没有任何问题/响应有助于使其简单到足以理解我需要做什么。我正在使用 jQuery 1.7 版,这可能解释了为什么其他问题中发布的一些代码是不同的。

谷歌地图加载在一个滑动切换的 div 中,中心点向西北偏移,并且相对于 div 打开时显示的地图部分不可见。我正在尝试显示一个非常简单的地图,没什么特别的。

jQuery(".toggle").click(function () {
    // check the visibility of the next element in the DOM
        jQuery(this).next().slideToggle(); // slide it down
});

我的 jQuery 知识有限,但我知道我需要在切换 div 后强制加载 iframe。我只是不知道如何实现这一目标!HTML / PHP 代码如下。

<span class="toggle">
View Map // with some CSS
</span>

<div id="maps" class="ui-helper-hidden">
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=<?php echo $latitude;?>,<?php echo $longitude;?>&amp;aq=&amp;t=m&amp;z=13&amp;output=embed&key=123456789"></iframe>
</div>
4

1 回答 1

3

您可能需要查看使用 JavaScript 和 Maps API 动态加载地图。在此过程中,您将创建一个中心点对象,然后可以在切换回调函数中重用该对象来重置地图的中心。像这样的东西应该工作。

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

    $(function () {

        // create a center
        var c = new google.maps.LatLng(-33.8790, 151.2064);

        //create map options object
        var mapOptions = {
            zoom: 14,
            center: c,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

        var map = new google.maps.Map(document.getElementById('maps'), mapOptions);

        $(".toggle").click(function () {
            // check the visibility of the next element in the DOM
            $(this).next().slideToggle(300, function(){
                google.maps.event.trigger(map, "resize"); // resize map
                map.setCenter(c); // set the center
            }); // slide it down

        });

    });

</script>
于 2012-12-05T23:54:30.490 回答