tags:

views:

703

answers:

1

How to move custom marker to front on google map? I found moveToTop function for GoogleMaps Flash API, but no one for "standard" API.

+3  A: 

You can set the zIndex for a new custom marker when you create it, with the zIndexProcess property on the GMarkerOptions constructor parameter.

Cannonade
Example: http://econym.org.uk/gmap/zindex.htm
Chris B