> The problem is that, for that variable, the syntax is:
> function newMarker(location, html, iconcolor, iconnum, iconsize)
> so I will never be able to pass it......

It's your function definition, even if you've copy-pasted it.  Alter
it.
Example -
   function newMarker(location, html, icontype, iconcolor, iconnum,
iconsize)
In the function, you might use
    customIcons[icontype]
To call your function, you might do
    var mark = newMarker(somepoint, tipo, null, null, null);
Whatver the value of 'tipo' is when you do that call will get used
within the function where 'icontype' occurs.


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