How to hide or disable the google logo, footer, copyright on google maps JavaScript API v3?
This CSS works like charm [October 2019 tested].
Removes Google Logo, terms of use, and Report a problem div.
a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}
.gmnoprint a, .gmnoprint span, .gm-style-cc {
display:none;
}
.gmnoprint div {
background:none !important;
}
Try this for api v3:
.gm-style-cc { display:none; }