编程语言
首页 > 编程语言> > javascript-使用markerclusterer手动绘制地图v3的群集

javascript-使用markerclusterer手动绘制地图v3的群集

作者:互联网

嘿,我正在为Google地图使用流行的markerclusterer插件,可以在http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js找到

我想知道我可以使用什么功能来手动添加一个clustermarker,因为当我缩小很多时,我想在服务器端通过网络发送大量json之前对标记进行集群.

调用什么功能添加集群标记?

任何帮助深表感谢

解决方法:

由于没有其他答案,我自己对MarkerClusterer进行了扩展,我敢肯定可以将其重写为更好的标准,但这是我能想到的:

MarkerClusterer.prototype.AddCluster = function(clat, clng, csize)
{
  var clusterlocation = new google.maps.LatLng(clat, clng)
  var CI = new ClusterIcon(new Cluster(this), this.getStyles, this.getGridSize());
  var index = 0;
  var dv = csize;
  while (dv !== 0) {
    dv = parseInt(dv / 10, 10);
    index++;
  }
  var style = this.styles_[index-1];
  CI.setCenter(clusterlocation);
  $.extend(CI, {sums_ : {text : csize, index: index}, url_ : style['url'], width_ : style['width'], height_ : style['height']});
  CI.setMap(this.map_);
  CI.show();
  CI.triggerClusterClick = function()
  {this.map_.setCenter(clusterlocation);
   this.map_.setZoom(this.map_.getZoom()+1); }
}

标签:google-maps,google-maps-api-3,javascript,jquery
来源: https://codeday.me/bug/20191208/2094005.html