> However, I don't know how change_row_style() can know/be told that > "marker37" was clicked. With that said, are either of these possible?:
See this recent thread about click listener(s) - http://groups.google.com/group/Google-Maps-API/browse_thread/thread/6ac06fce04c119a4/7a3bcc63cc8bbe5a#7a3bcc63cc8bbe5a I can't beat Larry's words, quote - "You probably want to use the arguments of the map "click" listener: http://code.google.com/apis/maps/documentation/reference.html#GMap2.E... click overlay, latlng, overlaylatlng This event is fired when the user clicks on the map with the mouse. A click event passes different arguments based on the context of the click, and whether or not the click occured on a clickable overlay. If the click does not occur on a clickable overlay, the overlay argument is null and the latlng argument contains the geographical coordinates of the point that was clicked. If the user clicks on an overlay that is clickable (such as a GMarker, GPolygon, GPolyline, or GInfoWindow), the overlay argument contains the overlay object, while the overlaylatlng argument contains the coordinates of the clicked overlay. In addition, a click event is then also fired on the overlay itself. " So, when your click listener is fired it automatically gets fed three parameters (any of which may be null) You could set a custom property on your marker object when creating, like - marker.mytextname = 'marker37'; or marker.myrefnumber = 37; Your click listener might look like - GEvent.addListener(map, 'click', function(overlay, latlng) { if (overlay) { if (overlay.mytextname) { // do whatever it was with styles using the identified marker } } } cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
