hello,
I don't know how i can create a new marker in my google map
i have this function but i don't know how does it work
please help me
function createMarker(point, name, address, type)
{
      var marker = new GMarker(point, customIcons[type]);
     var html = "<b>" + name + "</b> <br/>" + address;
   GEvent.addListener(marker, 'click', function()
    {
        marker.openInfoWindowHtml(html);
           });
            return marker;
                 }


thank you

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