javascript - Change draggable marker cursor on google maps -
when creating new market use 'cursor' parameter set cursor type on market, if draggable parameter set true i'm unable change cursor. it's 'pointer'. here code:
var marker = new google.maps.marker({ map:map, draggable:true, animation: google.maps.animation.drop, position: center, cursor: 'move' });
so, if draggable
isn't set true
cursor of marker 'move'
if it's true, becomes 'pointer'
. ideas?
this bug has been around while https://code.google.com/p/gmaps-api-issues/issues/detail?id=3120
Comments
Post a Comment