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