简体   繁体   中英

Change zoom in out icon color of google map

I want to change the color of zoom in out and the fullscreen button icon gray to white. But, I can't change color with CSS as these icon's format is SVG. is it possible to change color?

在此处输入图像描述

I have changed the button color using CSS. Just select the CSS class and use the CSS filter property

#map .gm-fullscreen-control > img:nth-child(1) {
    filter: brightness(3.5) !important;
    -webkit-filter: brightness(3.5) !important;
}

I hope it will be helpful for others:)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM