javascriptgoogle-mapsgoogle-maps-api-3cursorgoogle-maps-styling

Google Maps API v3 draggableCursor options such as position


This is a long shot, but I was wondering if there were any settings in Google Maps API v3 that would allow me to set where on my custom "draggableCursor" the tip/end (for lack of a better word) of the cursor should be. The default settings seem to be that the top left hand corner of the image is the cursor point, but I want it to be the bottom left hand side.

Here is my code so far:

map.setOptions({ draggableCursor: 'url(images/markers/you_marker.cur), default' });

Solution

  • The hotspot for a cursor should be defined in the .cur file. It defaults to the top-left in the absence of any other position being specified. The API simply specifies which cursor file to use.

    http://www.axialis.com/tutorials/what-is-a-cursor.html#t8 (other cursor design programs are available).