On Mar 23, 3:44 pm, "J.S" <[email protected]> wrote:
> Thanks for your response i'm already using Mike's method of using
> custom icons, what i'm looking for is a way
> to set the script below to edit the size of all the custom icons at
> once instead of creating the same script for all the icons
> individually, is there a way to do this?

What you can do is use one icon as a template for another, and then
only adjust the properties which differ.
http://code.google.com/apis/maps/documentation/reference.html#GIcon

var bistroIcon = new GIcon(cafeIcon);
bistroIcon.image = "...";

var barIcon = new GIcon(cafeIcon);
barIcon.image = "...";

-- 
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