单个页面上有多个Google地图?

时间:2013-11-13 16:31:13

标签: javascript jquery html google-maps

我试图在一个页面上显示多个Google地图。它是根据区域中的每个位置动态生成的结果页面。每个div都有一个我希望运行Google Map的地图类。截至目前,我只能让它处理一个div的信息。

据我所知,我需要以某种方式将谷歌地图传递给数组。但考虑到我的实现用途,我很困惑如何做到这一点。

HTML

<div class="map" data-address="123 easy st city st zip" data-title="location"></div>
<div class="map" data-address="456 easy st city st zip" data-title="location 2"></div>

的jQuery

$('.map').each(function() {

    var geoCode = new google.maps.Geocoder(), 
    container = this;

    geoCode.geocode({'address': $(container).data('address')}, function(results, status) {
    var start_options = 0;

    if (status == google.maps.GeocoderStatus.OK) {
         var mapOptions = {
             zoom: 14,
             center: new google.maps.LatLng(results[0].geometry.location.lat(), results[0].geometry.location.lng()),
             zoomControl: true,
             scaleControl: false,
             scrollwheel: false,
             disableDefaultUI: true,
             mapTypeId: google.maps.MapTypeId.ROADMAP,

         }

         if (navigator.userAgent.match(/(iPod|iPhone|iPad|Android|Blackberry|Windows Phone|Nokia|HTC|webOS)/)) {
                 mapOptions.draggable=false;
        }

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

        var marker = new google.maps.Marker({
            position: results[0].geometry.location,
            animation: google.maps.Animation.DROP,
            map: map,
            title: $(this).data('itemTitle')
        });

        google.maps.event.addListener(marker, 'click', toggleBounce);

        function toggleBounce() {
              if (marker.getAnimation() != null) {
                marker.setAnimation(null);
              } else {
                marker.setAnimation(google.maps.Animation.BOUNCE);
              }
        }

        var center;
        function calculateCenter() {
            center = map.getCenter();
        }

        google.maps.event.addDomListener(map, 'idle', function() {
            calculateCenter();
        });

        google.maps.event.addDomListener(window, 'resize', function() {
            map.setCenter(center);
        });
    } else {
        $(this).parent().hide();
    }
});
}); 

2 个答案:

答案 0 :(得分:3)

在forEach循环中,您正在使用document.getElementById("map")

这有几个原因是错误的,首先是因为地图没有id,它有一个类,其次是因为地图每次都会附加到同一个元素。

您要做的是将地图附加到循环中的当前地图。在你的jQuery循环中,这将是this变量。

方便地(因为this通常可以在嵌套函数中更改),循环的第一行将this存储在名为container的变量中。

只需将document.getElementById("map")替换为container,您就应该为.map元素的每个实例附加一个不同的地图。

答案 1 :(得分:1)

  1. 为您的div分配id属性
  2. 使用一个参数&gt;容器
  3. 在函数中包装Google地图代码
  4. 调用函数
  5. function getGoogleMap(container) 
    {
        //google code 
        //use the container parameter like so
    
        geoCode.geocode({'address': $("#" + container).data('address')});
        //or so
        var map = new google.maps.Map(document.getElementById(container), mapOptions);
    }
    getGoogleMap("map1");