> I can replicate this in IE7 and FF3.6 > Survey:http://tinyurl.com/39g8juf
It's a curious effect, but I think down to this ine polyShape = new GMarker(polyPoints) Your polyPoints is an array (with one member) of GLatLng GMarker wants to be fed a GLatLng, not an array. So that's the busted marker. However, your function then goes on to marker = new GMarker(polyPoints[polyPoints.length -1]); which produces the good marker. Just ditch the polyShape line altogether for the marker case -- 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.
