如何阻止我的谷歌地图标记在悬停时具有指针光标样式?目前,标记的行为类似于链接,如果将鼠标悬停在它们上方,光标会变为手形。
这是创建标记的代码:
function addMarkerLargeMap(latlng, myTitle, html, price) {
markers.push(new google.maps.Marker({
position: latlng,
map: map,
title: myTitle,
icon: "path-to-my-icon.png",
html: "<div style='width:100px;height:auto'>" + html + "</div>",
}));