On Jun 23, 10:00 am, Steve <[email protected]> wrote: > > The reason is: > Uncaught TypeError: Cannot read property 'id' of undefined > > And the weird thing is that we haven't changed anything. It just > stopped working.
It looks like you're trying to read an internal property: var markerID = m.Yv.id; and Yv isn't called that any more. Internal properties are liable to change their name at each release of the API, which is why they are not documented. I would suggest that you should be assigning your own IDs to the markers (but don't use a two-letter property name). -- 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.
