0

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

我知道我需要以某种方式向 Google Maps 传递一个数组。但是鉴于我的实现用途,我对如何做到这一点感到困惑。

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();
    }
});
}); 
4

2 回答 2

3

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

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

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

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

所以简单地替换document.getElementById("map")container,你应该得到一个不同的地图附加到.map元素的每个实例。

于 2013-11-13T16:41:57.407 回答
1
  1. 将 id 属性分配给您的 div
  2. 用一个参数将谷歌地图代码包装在一个函数中>容器
  3. 调用函数
函数getGoogleMap(容器)
{
    //谷歌代码
    //像这样使用容器参数

    geoCode.geocode({'address': $("#" + container ).data('address')});
    //或者
    var map = new google.maps.Map(document.getElementById( container ), mapOptions);
}
getGoogleMap("map1");
于 2013-11-13T17:19:16.380 回答