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?
var cafeIcon = new GIcon(); cafeIcon.image = "http://chart.apis.google.com/chart? chst=d_map_pin_icon&chld=cafe|996600"; cafeIcon.shadow = "http://chart.apis.google.com/chart? chst=d_map_pin_shadow"; cafeIcon.iconSize = new GSize(12, 20); cafeIcon.shadowSize = new GSize(22, 20); cafeIcon.iconAnchor = new GPoint(6, 20); cafeIcon.infoWindowAnchor = new GPoint(5, 1); // Set up our GMarkerOptions object literal markerOptions = { icon:cafeIcon }; -- 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.
