在创建新市场时,我使用'cursor' 参数在该市场上设置光标类型,但如果可拖动参数设置为 true,我将无法更改光标。它始终是“指针”。这是我的代码:
var marker = new google.maps.Marker({
map:map,
draggable:true,
animation: google.maps.Animation.DROP,
position: center,
cursor: 'move'
});
因此,如果draggable
未将 设置为true
标记的光标 is'move'
但如果为真,则变为'pointer'
. 有任何想法吗?