我正在使用带有大量标记的Google地图。我正在使用基于数据可用性的自定义标记图像。我想确保最新的标记位于地图中所有其他元素的顶部。
我该怎么做?
代码:
circleIcon = {
path: google.maps.SymbolPath.CIRCLE,
fillColor: "blue",
fillOpacity: 1,
scale: 2,
strokeColor: "red",
strokeWeight: 10
};
coordinates = image[2].split(',');
pin=new google.maps.LatLng(coordinates[0], coordinates[1]);
if(marker) {
marker.setMap(null);
}
if(image[0] != "NOP") {
var markerIcon = circleIcon;
} else {
var markerIcon = image_car_icon;
}
marker=new google.maps.Marker({
position:pin,
icon:markerIcon
});
marker.setMap(map);
map.setCenter(marker.getPosition());
更新
我使用jquery来更新InfoWindow的z-index,如:
popup = new google.maps.InfoWindow({
content:'<image id="pin_' + pin_count + '" src="data:image/png;base64,' + image[1] +'"/>',
});
popup.open(map, marker);
google.maps.event.addListener(popup, 'domready', function() {
console.log("DOM READY...........................");
// Bring latest Image to top
e = $('#pin_' + pin_count).parent().parent().parent().parent();
e.css({
'z-index' : 99999 + pin_count,
});
});
也许这就是为什么标记显示在InfoWindow后面。我尝试使用zIndex进行更新,但标记仍显示在InfoWindow后面:
marker=new google.maps.Marker({
position:pin,
zIndex: 9999999 + pin_count,
icon:markerIcon
});
更新
示例代码。我希望“绿色圆圈”图标标记位于“图钉”图标标记后面。
<!DOCTYPE html>
<html>
<head>
<script src="http://maps.googleapis.com/maps/api/js?key=&sensor=false"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
var london = new google.maps.LatLng(51.508742,-0.120850);
function initialize()
{
var pin1=new google.maps.LatLng(51.508742, -0.120850);
var pin2=new google.maps.LatLng(51.508642, -0.120850);
var mapProp = {
center:pin1,
zoom:17,
disableDefaultUI:true,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
var marker=new google.maps.Marker({
position:pin2,
zIndex:99999999
});
marker.setMap(map);
var infowindow = new google.maps.InfoWindow({
content:"Hello World!"
});
infowindow.open(map,marker);
circleIcon = {
path: google.maps.SymbolPath.CIRCLE,
fillColor: "blue",
fillOpacity: 1,
scale: 2,
strokeColor: "green",
strokeWeight: 10
};
var marker2=new google.maps.Marker({
position:pin1,
icon:circleIcon,
zIndex:99999
});
marker2.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="googleMap" style="width:500px;height:380px;"></div>
</body>
</html>
答案 0 :(得分:45)
您必须设置标记选项&#34;优化&#34;与zIndex选项组合使用为false。
var marker=new google.maps.Marker({
position:pin2,
optimized: false,
zIndex:99999999
});
这可以解决您的问题。
答案 1 :(得分:26)
默认情况下,地图会使地图上较低的标记的z-index更高,因此它们可以从上到下堆叠
您可以为标记设置zIndex
选项。您只需在添加标记时创建增量zIndex计数器并将其添加到标记选项对象:
marker=new google.maps.Marker({
position:pin,
icon:markerIcon,
zIndex: counterValue
});
我不太确定基本起始值需要是什么
答案 2 :(得分:4)
问题解决了。只需将zValue设置为999(我猜更高会使它更多地位于顶部)它应该会出现在顶部。我猜默认值低于999:
var zValue;
if (someCondition) {
zValue = 999;
}
var marker = new google.maps.Marker({
map: map,
position: {lat: lat, lng: lng},
title: titleString,
icon: image,
zIndex: zValue
});
答案 3 :(得分:1)
请注意,正如the google map documentation中所述,圆圈的z-index将与其他多边形的z-index进行比较,而不是与标记的z-index进行比较。