是否可以在 Google Chart 动态图标上设置透明度?
我从 Google 图表调用此网址,以在我的 Google 地图上放置自定义图标。 http://chart.apis.google .com/chart?chst=d_bubble_icon_text_small&chld=home|bbT|HC|52B552|000000
为了使我的地图在移动浏览器上更具可读性,我想设置返回图像的透明度,但我似乎找不到办法这样做。此 Google Chart api 页面,http://code.google.com/apis/chart /docs/chart_params.html 声明我可以指定 00 - FF 范围内的值,但是当我尝试向原始网址添加值时,http://chart.apis.google.com/chart?chst=d_bubble_icon_text_small&chld=home|bbT |HC|52B552AA|000000,它返回 404 错误。
这可能吗?
I'm calling this url from Google Charts to place a custom icon on my Google map.
http://chart.apis.google.com/chart?chst=d_bubble_icon_text_small&chld=home|bbT|HC|52B552|000000
In order to make my map more readable on a mobile browser, I'd like to set the transparency of the returned image, but I can't seem to find a way to do so. This Google Chart api page, http://code.google.com/apis/chart/docs/chart_params.html states that I can specify a value in the 00 - FF range, but when I try adding a value to my original url, http://chart.apis.google.com/chart?chst=d_bubble_icon_text_small&chld=home|bbT|HC|52B552AA|000000, it returns a 404 error.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。
您需要添加您想要的背景 chf=bg,s,FF000033 (或其他一些颜色和 alpha)
http://chart.googleapis.com/chart?chst=d_bubble_icon_text_small&chf=bg,s,FF000033&chld=home|bbT|HC|52B552|000000
(编辑:我错过了URL 中的最后一个 0 现在已修复)
Yes it is possible.
You need to add chf=bg,s,FF000033 (Or some other color and alpha) that you want for the background
http://chart.googleapis.com/chart?chst=d_bubble_icon_text_small&chf=bg,s,FF000033&chld=home|bbT|HC|52B552|000000
(Edit: I missed the last 0 in the URL. Now it is fixed)