Thanks for the hint - i kept looking at the iconsize issues and I figured it out. I had pre-determined the iconsize and shadowsize vars etc., and used it on each instance of "new google.maps.MarkerImage". HOWEVER I forgot to put "new" in front and that's how it somehow messed up.
var iconsize = google.maps.Size(24, 24); var shadowsize = google.maps.Size(24, 30); var iconpoint = google.maps.Point(0, 0); var shadowpoint = google.maps.Point(0,0); var iconanchor = google.maps.Point(0, 12); was changed to: var iconsize = new google.maps.Size(24, 24); var shadowsize = new google.maps.Size(24, 30); var iconpoint = new google.maps.Point(0, 0); var shadowpoint = new google.maps.Point(0, 0); var iconanchor = new google.maps.Point(0, 12); On Jan 5, 3:26 am, Joao Jose Pedrini <[email protected]> wrote: > Set the Size of the Marker > > -- > Joao Jose Pedrini > [email protected]
-- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
