如何在谷歌地图v3中显示/隐藏MarkerCluster?

时间:2010-10-30 19:09:36

标签: javascript google-maps-api-3 markerclusterer

我需要为不同的mapType设置不同的标记,我将它们推送到MarkerClusterer

我用“隐藏”标记:

cluster.set("map", null);
cluster.resetViewport();
cluster.redraw();

并“显示”他们:

cluster.set("map", MAP);
cluster.resetViewport();
cluster.redraw();

问题是MarkerClusterer似乎不喜欢set("map", null);它会抛出错误TypeError: Object #<a MarkerClusterer> has no method 'remove'。如何以正确的方式显示/隐藏它们?

5 个答案:

答案 0 :(得分:7)

清除群集的优雅方式

cluster.clearMarkers();

答案 1 :(得分:6)

在Javascript API v3中,只需说:

clusterer.setMap(null);

如果将地图设置回现有地图对象,群集将重新出现。

clusterer.setMap( this.map );

此外,我建议不要在您的示例中命名您的Clusterer'群集'。 MarkerClusterer包含Cluster对象,它们是实际的聚簇标记,而不是ClusterER本身。

答案 2 :(得分:1)

这是一个更完整的解决方案:

在.html中添加:

<div id="map-canvas-hidden" style="display:none"></div>
<div id="map-canvas-shown" style="width:500px; height:500px"></div>
<。>在.js中添加:

MarkerClusterer.prototype.remove = function() { };
var HIDDEN_MAP = new google.maps.Map(document.getElementById("map-canvas-hidden"), {});
var gmap = new google.maps.Map(document.getElementById("map-canvas-shown"), {});

显示群集:

    cluster.setMap(gmap);
    cluster.resetViewport();
    cluster.redraw();

隐藏群集:

    cluster.setMap(HIDDEN_MAP);
    cluster.resetViewport();
    cluster.redraw();

最后,我需要下面的补丁来识别protclusrer.js:

--- markerclusterer.js.orig 2013-12-06 18:02:32.887516000 +0100
+++ markerclusterer.js  2013-12-06 18:03:25.487516924 +0100
@@ -620,6 +620,7 @@
  */
 MarkerClusterer.prototype.getExtendedBounds = function(bounds) {
   var projection = this.getProjection();
+  if (!projection) return null;

   // Turn the bounds into latlng.
   var tr = new google.maps.LatLng(bounds.getNorthEast().lat(),
@@ -657,7 +658,7 @@
  * @private
  */
 MarkerClusterer.prototype.isMarkerInBounds_ = function(marker, bounds) {
-  return bounds.contains(marker.getPosition());
+  return bounds ? bounds.contains(marker.getPosition()) : false;
 };

希望这会有所帮助

答案 3 :(得分:1)

以下是我在地图上轻松显示/隐藏群集的代码(针对当前版本的Maps API和JS-Cluster-Renderer进行了更新)。谢谢加比。

MarkerClusterer.prototype.remove = function() {};

MarkerClusterer.prototype.hide = function() {
  this.setMap(null);
  this.resetViewport();
};

MarkerClusterer.prototype.show = function() {
  this.setMap(map); // replace map with your reference to the map object
  this.redraw();
};

// To hide the clusters:
cluster.hide();

// To show the clusters:
cluster.show();

答案 4 :(得分:0)

我通过一点点的monkeypatching和一点点黑客来解决这个问题。我还在等待一个干净的答案,但这个 解决了我的问题,所以我也发布了这个:

MarkerClusterer.prototype.remove = function () {}

[..]

cluster.set("map", HIDDEN_MAP); // remove the clusterer
cluster.resetViewport();
cluster.redraw();