On Jun 4, 10:59 pm, Robert Stefanowicz <[email protected]> wrote: > i am trying to add a bubble-label to my markers. Nothing happens! > > where have i put the code to ?
You haven't got any code which opens an infoWindow. Read Mike's tutorial on using a createMarker function: http://econym.org.uk/gmap/basic1.htm You'll need a createMarker function, and something like //Returning Code from MySQL DB echo "map.addOverlay(createMarker(new GLatLng(".$row->lat.",".$row- >lon."),'".$row->text."'));" assuming that $row->text contains the text you want in the infoWindow. Be careful about quotes and apostrophes in the text. -- 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.
