On Sep 28, 12:56 pm, patfee <[EMAIL PROTECTED]> wrote: > Hi, > > i wonder how it would be possible to include the contents from a php > script as the source for the openInfoWindow? > > So something like: > marker.bindInfoWindow(test.php); > http://code.google.com/apis/maps/documentation/reference.html#GMarker.Methods GMarker.bindInfoWindow(content, opts?) Binds the given DOM node to this marker. The content within this node will be automatically displayed in the info window when the marker is clicked. Pass content as null to unbind. (Since 2.85)
So that will only work with DOM nodes that already exist. If test.php is a separate web page you could put it in an iframe in the infowindow. -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
