On Apr 16, 9:57 am, Arvind Rangan <[email protected]> wrote:
> markerOptions = {icon:newIcon};
> var marker = new GMarker(point,{zIndexProcess:importanceOrder});
>
> what is the setting to show new icon image and z-index is there any
> constraint to it.

You can only have one options object when you create the GMarker; that
object needs to contain all the options you want to set.

markerOptions = {icon:newIcon,zIndexProcess:importanceOrder};
var marker = new GMarker(point,markerOptions);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to