Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the "Powered by Google" logo in the Google Map Autocomplete dropdown list?

Tags:

google-maps

Documentation suggests that if we were to use the Autocomplete with Google Maps, we can remove the "Powered by Google" logo at the bottom. Any idea how to go about doing?

like image 290
ngzhongcai Avatar asked Sep 08 '12 02:09

ngzhongcai


People also ask

What is Google place autocomplete?

The Place Autocomplete service is a web service that returns place predictions in response to an HTTP request. The request specifies a textual search string and optional geographic bounds.


1 Answers

Animesh Nandi's answer is a bit old. Actually, to remove the 'powered by Google' logo I had to use the following code:

.pac-container:after {     /* Disclaimer: not needed to show 'powered by Google' if also a Google Map is shown */      background-image: none !important;     height: 0px; } 
like image 177
Kamafeather Avatar answered Sep 23 '22 13:09

Kamafeather