On Nov 10, 9:19 pm, isusko <[EMAIL PROTECTED]> wrote:
>. In my code i don´t see the image code line for change the icon.
>
>       var marker = new GMarker(point);

you would put the icon in the constructor for the marker = new
GMarker(point,icon)
where icon is something like

var icon = new GIcon();
icon.image = "http://www.google.com/mapfiles/turkey.png";;
icon.shadow = "http://www.google.com/mapfiles/turkeyshadow.png";;
icon.iconSize = new GSize(59, 62);
icon.shadowSize = new GSize(91, 62);
icon.iconAnchor = new GPoint(37, 59);
icon.infoWindowAnchor = new GPoint(31, 8);


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