> still doesn't work?!

For whatever reason, you've chosen to ignore the structure in
http://econym.org.uk/gmap/basic1.htm
but that's okay because there is more than one way to get anything
working.

You are doing
      var point = map.addOverlay(new GMarker(....
      GEvent.addListener(GMarker,...

Variable 'point' will be the result of an overlay to the map.  I don't
know what that is of the top of my head, probably 'true' to indicate
success.  Importantly, it is NOT any kind of reference to the overlay
you've added.
Variable 'GMarker' has not been mentioned before, but you add a click
listener to it.  As it has no meaningful value and is unconnected with
anything on the screen, it never gets clicked.

Slow down, read the tutorials, stop trying to do lots in one line of
code, try this to understand how it works by going one step at a time
-
   var mypoint = new GLatLng(51.4769752333875,-2.53517458867092);
   var mymarker = new GMarker( point, markerOptions);
   map.addOverlay(mymarker);
   GEvent.addListener(mymarker, "click", function() {....

Once you have that working you will probably want to set up click
targets to suit your custom markers, guide already pointed at.

-- 
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.

Reply via email to