Wasn't it estatio who wrote:
>One last thing, I seems that something is missing in the opacity
>control slider and I don't have idea why.

You can't use the + operator inside a '-quoted string to attempt to
concatenate two "-quoted strings.
+ is a Javascript operator, and you end up trying to use it in HTML.

container.innerHTML = '<div style="height:21px; width:70px;
background-image:"+"url(http://www.maptiler.org/img/opacity-slider.png)">
</div>';

the style attribute gets the value
        "height:21px; width:70px; background-image:"
and the browser doesn't understand
        +"url(http://www.maptiler.org/img/opacity-slider.png)"

-- 
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to Google-Maps-API@googlegroups.com
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