使用gmap3添加集群

时间:2011-04-02 19:52:36

标签: jquery jquery-plugins jquery-gmap3

我正在使用gmap3 jquery插件,需要一些帮助。

我创建了一个看起来像

的函数
 function getMarkers() {
    $.getJSON("/Location/LocationData", null, function (data) {
        var i, items = [];
        //loop through values from service
        $.each(data, function (key, val) {
            lat = val.lat;
            lng = val.long;
            des = val.desc;
            rating = val.rating;
            items.push({ lat: val.lat, lng: val.long, data: val.desc });
            i++;
        });

        $('#map_canvas').gmap3(
      { action: 'addMarkers',
          radius: 100,
          markers: items,

          clusters: {
              // This style will be used for clusters with more than 0 markers
              0: {
                  content: '<div class="cluster cluster-1">CLUSTER_COUNT</div>',
                  width: 53,
                  height: 52
              },
              // This style will be used for clusters with more than 20 markers
              20: {
                  content: '<div class="cluster cluster-2">CLUSTER_COUNT</div>',
                  width: 56,
                  height: 55
              },
              // This style will be used for clusters with more than 50 markers
              50: {
                  content: '<div class="cluster cluster-3">CLUSTER_COUNT</div>',
                  width: 66,
                  height: 65
              }
          },
          events: {
              click: function (marker, event, data) {
                  alert(data);
              }
          },

          callback: function (ref) { // get the cluster reference and save it in global variable
              cluster = ref;
          }
      }
    );


        //test to see output
        //            $('<ul/>', {
        //                'class': 'my-new-list',
        //                html: items.join('')
        //            }).appendTo('#list');


    });

}

一切正常,但我希望稍微修改群集的应用方式。我有一个变量“等级”,返回1-10的评级。是否可以根据评级编号为集群增加强度?

e.g。我在地图上有一组4个引脚,所有引脚的额定值均为5.我有另一组4个引脚,只有1个等级。

是否可以创建一个公式,以便第一个集群显示4 +(4 * 5),而不是只显示4个显示24而第二个集群只显示9?

1 个答案:

答案 0 :(得分:0)

gmap3.js function _displayClusters(1246)

修改内容:styles [m] .content.replace('CLUSTER_COUNT',_ compute_formula(cl.idx.length)),

第二集群是5而不是9?