Special/Google Map API

구글 맵에서 구글 로고, 약관 등 제거하기

RAY.D 2016. 3. 1. 01:11



How to hide or disable the google logo, footer, copyright on google maps JavaScript API v3?



This CSS works like charm. 
Removes Google Logoterms 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;
}