我有一组标记聚集在我的地图上。另一组标记单独显示,我碰巧需要将这些标记显示在群集上方。我尝试在集群选项对象中设置 zIndex,低于第二组标记,但无济于事。知道该怎么做吗?
4 回答
它可以完成,但在你到达那里之前这是一个相当颠簸的方式......正如 Rick 所说,问题在于 MarkerClusterer 添加了一个自己的 OverlayView,其群集图标位于较高的窗格中作为常规标记。在集群上方添加标记的唯一方法是用他自己的武器击败集群并添加自己的 OverlayView 并将标记图标标记添加到更高的窗格(在此处阅读有关窗格的信息)。我真的不喜欢它——但这是我找到的唯一方法。
为此,您必须创建一个实现 google.maps.OverlayView(参考)的自定义叠加层,可以在此处找到一个很好的示例(带有解释,我使用了其中的一些代码)。
这是一个粗略的 CustomOverlay 原型:
// build custom overlay class which implements google.maps.OverlayView
function CustomOverlay(map, latlon, icon, title) {
this.latlon_ = latlon;
this.icon_ = icon;
this.title_ = title;
this.markerLayer = jQuery('<div />').addClass('overlay');
this.setMap(map);
};
CustomOverlay.prototype = new google.maps.OverlayView;
CustomOverlay.prototype.onAdd = function() {
var $pane = jQuery(this.getPanes().floatPane); // Pane 6, one higher than the marker clusterer
$pane.append(this.markerLayer);
};
CustomOverlay.prototype.onRemove = function(){
this.markerLayer.remove();
};
CustomOverlay.prototype.draw = function() {
var projection = this.getProjection();
var fragment = document.createDocumentFragment();
this.markerLayer.empty(); // Empty any previous rendered markers
var location = projection.fromLatLngToDivPixel(this.latlon_);
var $point = jQuery('<div class="map-point" title="'+this.title_+'" style="'
+'width:32px; height:32px; '
+'left:'+location.x+'px; top:'+location.y+'px; '
+'position:absolute; cursor:pointer; '
+'">'
+'<img src="'+this.icon_+'" style="position: absolute; top: -16px; left: -16px" />'
+'</div>');
fragment.appendChild($point.get(0));
this.markerLayer.append(fragment);
};
此叠加层获取地图、LatLng 对象和图标的 URL。好处是您可以将自己的 HTML 写入图层,坏处是您必须自己处理 Maps API 为您所做的所有事情(例如标记图像锚点处理)。该示例仅适用于锚点位于图像中间的 32x32px 图像,因此仍然很粗糙。
要使用 CustomOverlay,只需像这样实例化它:
// your map center / marker LatLng
var myLatlng = new google.maps.LatLng(24.247471, 89.920990);
// instantiate map
var map = new google.maps.Map(
document.getElementById("map-canvas"),
{zoom: 4, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP}
);
// create the clusterer, but of course with markers
//var markerClusterer = new MarkerClusterer(map, []);
// add custom overlay to map
var customCustomOverlay = new CustomOverlay(map, myLatlng, 'http://www.foo.bar/icon.png');
我希望这对你有用。
我有同样的问题,但不想处理新的覆盖。
无需创建特定的叠加层,您只需切换叠加层的父容器 z-index。
这可以通过使用以下函数来实现:
_changeOverlayOrder = function(map) {
var panes = map.getPanes();
var markerOverlayDiv = panes.overlayImage.parentNode;
var clusterOverlayDiv = panes.overlayMouseTarget.parentNode;
// Make the clusters clickable.
if(!markerOverlayDiv.style.pointerEvents) {
markerOverlayDiv.style.cssText += ";pointer-events: none;";
}
// Switch z-indexes
if(markerOverlayDiv.style.zIndex < clusterOverlayDiv.style.zIndex) {
var tmp = markerOverlayDiv.style.zIndex;
markerOverlayDiv.style.zIndex = clusterOverlayDiv.style.zIndex;
clusterOverlayDiv.style.zIndex = tmp;
}
};
希望能帮助到你。
据我所知,这是做不到的。簇位于比标记图像更高的窗格中。
https://developers.google.com/maps/documentation/javascript/reference#MapPanes
您可以使用 CSS 覆盖它。
CSS
.gm-style-pbc + div > div > div:first-child{ z-index: 108 !important; }
SCSS
.gm-style-pbc{
+ div{
> div{
>div{
&:first-child{
z-index: 108 !important;
}
}
}
}
}