Wasn't it MapTester who wrote: >Is there an example somewhere of creating a custom createmarker >function, that illustrates the key features?
The only one I've done is this one: http://econym.org.uk/gmap/example_egeotest2.htm Which just does this: function MyCreateMarker(point, name, desc, style) { map.addOverlay(new GMarker(point, {draggable:true})); } In your case, you just need to work out what your tooltip should be and write function MyCreateMarker(point, name, desc, style) { map.addOverlay(new GMarker(point, {title: ... })); } -- http://econym.org.uk/gmap The Blackpool Community Church Javascript Team --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
