gpt4 book ai didi

google-maps - 阻止谷歌地图标记在悬停时具有指针光标样式?

转载 作者:行者123 更新时间:2023-12-03 00:25:32 25 4
gpt4 key购买 nike

如何阻止我的谷歌地图标记在悬停时具有指针光标样式?目前,标记的行为类似于链接,如果将鼠标悬停在标记上,光标会变成手形。

这是创建标记的代码:

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>",

}));

最佳答案

在标记选项中将可点击设置为 false

function addMarkerLargeMap(latlng, myTitle, html, price) {
markers.push(new google.maps.Marker({
position: latlng,
clickable: false,
map: map,
title: myTitle,
icon: "path-to-my-icon.png",
html: "<div style='width:100px;height:auto'>" + html + "</div>",
}));

或者,如果您想使用特定类型的光标而不是默认类型,则可以在标记选项中设置 cursor 属性。例如

cursor: 'crosshair'

尽管这似乎只有在标记可点击的情况下才有效。

关于google-maps - 阻止谷歌地图标记在悬停时具有指针光标样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16716019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com