Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove Google Copyright on google maps

I'd like to remove on google maps placed on my website the Google Adv (on the right-bottom of each map) :

Map Data 2011 Google PPWK ...

is it possible?

like image 887
markzzz Avatar asked Jul 11 '11 15:07

markzzz


2 Answers

See http://www.google.com/permissions/geoguidelines.html

Edit: (copy content from comment) The relevant piece of the linked page is as follows, in case the page becomes unavailable:

FAQ #1:

Can you give me permission to show your content without attribution, or put the attribution at the end of my book/movie/TV show?

Without exception, we require attribution when Content is shown. If you are unwilling to meet our attribution requirements, please contact our data provider(s) directly to inquire about purchasing the rights to the content directly.

like image 166
BlueMonkMN Avatar answered Oct 14 '22 04:10

BlueMonkMN


Use CSS for to remove "Google logo" and "terms of use" from google maps use this

To remove "terms of use" use this CSS

.gmnoprint a, .gmnoprint span {
    display:none;
}
.gmnoprint div {
    background:none !important;
}

To remove Google logo use this css

img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white2.png"], a[href^="http://maps.google.com/maps"]{
    display:none !important;
}

Note:- This answer is for only learning purpose it is advised do not remove Google logo in commercial projects.

like image 35
Shahbaz Avatar answered Oct 14 '22 04:10

Shahbaz