作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 javascript 更改此公交车图标?更改标记和路由颜色等很容易,但是如何更改下图中显示的图标?
最佳答案
没有基于 API 的方法来更改这些图标。
一个选项是使用 CSS,例如使用您的头像而不是图标:
/*this will hide the bus-icon*/
img[src="https://maps.gstatic.com/mapfiles/transit/iw2/6/bus.png"]{
width:0 !important;
}
/*use a custom icon as background for the span which follows the icon*/
img[src="https://maps.gstatic.com/mapfiles/transit/iw2/6/bus.png"]+span{
background:url(http://i.stack.imgur.com/8lcVw.png?s=32&g=1) no-repeat;
background-size: 16px 16px;
padding-left:18px;
}
但这只是一种解决方法,只有在这些工具提示的标记或图标的 src 不变的情况下,它才会起作用。
关于javascript - 如何更改谷歌地图巴士站的默认图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31071108/
我是一名优秀的程序员,十分优秀!