How to remove Google Copyright on google maps
Asked Answered
C

8

18

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?

Controller answered 11/7, 2011 at 15:30 Comment(0)
H
22

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.

Hebner answered 11/7, 2011 at 15:39 Comment(0)
D
21

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.

Dimmer answered 19/3, 2014 at 6:34 Comment(2)
WARNING: this is a violation of Google's ToSExtrasensory
@knitevision - Be realistic. You are more likely to have your site blocked from accessing the API, your app dropped from the appstore, or receive a "cease and desist" letter in the mail.Extrasensory
O
13

Pay for the commercial version of the map data and then ask Google.

Ordain answered 11/7, 2011 at 15:36 Comment(4)
I don't believe Google removes the attribution for paying customers either.Grandeur
If you pay them enough they will :-)Extrasensory
@StephenC by enough you mean billions? :DScrew
@peter - something like that.Extrasensory
S
8

If you go through the questions on the Permissions page, you'll eventually be presented with the following rules regarding attribution:

http://maps.google.com/support/bin/static.py?page=ts.cs&ts=1342531

All uses of Google Maps and Google Earth and its Content must provide attribution to Google and our suppliers. Google does not approve of any use of Content without proper attribution. Depending on the region, the Content provider may be Google alone or Google and one or more 3rd party providers.

Requirements:

Attribute Google (e.g. © 2011 Google) and third-party suppliers (e.g. © 2011 Tele Atlas) Make attribution readable to the average reader or viewer (e.g. avoid micro-sized letters) For Print: Display attribution within or immediately adjacent to the visual For Online: Attribution is automatically added within the API and cannot not obscured. For TV/Video: Display attribution the entire duration the Content is shown, only showing attribution briefly at the start, end, or credits is not allowed Where to Find the Attribution: Attribution is in the bottom right of Google Maps and in the bottom center of Google Earth Please note suppliers of Content can change between zoom levels as well as among regions

Additional Information:

Attribution is in the bottom right of Google Maps and in the bottom center of Google Earth For screenshots, the Google or or Google Maps logo is not required but attribution must always be present. However, the reverse is not allowed - only including Google logo is not proper attribution, particularly when 3rd-party suppliers were used for the Content. Google logos cannot be used in-line (e.g. "These maps from [Google logo].")

Soluk answered 16/7, 2011 at 17:2 Comment(0)
T
6

simply code css for logo

img[src=http://maps.gstatic.com/mapfiles/api-3/images/google_white2.png]
{display:none}

or use this code

img tag into a tag

a[href^="http://maps.google.com/maps"]{display:none !important}
Teryl answered 12/2, 2014 at 9:29 Comment(4)
This: a[href^="maps.google.com/maps"]{display:none !important} Works like a charm with the v3 on PhoneGap. Thanks!Moldboard
WARNING: this is a violation of Google's ToSExtrasensory
thanks Stephen C, this answer just a solution for hide google logo, i do not like violation of copyrightTeryl
Read this: google.com.au/permissions/geoguidelines/attr-guide.html. OK, so providing a technical solution probably isn't a violation of the ToS. But anyone who does what you are suggesting >>is<< violating the ToS. And since that means they don't have permission to use the Map APIs, there is a good chance that they are violating copyright as a consequence.Extrasensory
M
4

you just need to hide the banner div. Add this to your css. use firebug to get the div class or id and hide it.

e.g

.olLayerGooglePoweredBy

{display:none;}
Mauldon answered 2/3, 2013 at 12:4 Comment(0)
B
3

Combining all of the above answers, this CSS worked for me.

a[href^="http://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span {
    display:none;
}
.gmnoprint div {
    background:none !important;
}
Blabber answered 12/5, 2014 at 13:27 Comment(2)
WARNING: this is a violation of Google's ToSExtrasensory
@StephenC - dude, get life!Benzofuran
T
3
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;
}

this work like a charm

Twofold answered 28/8, 2015 at 9:13 Comment(1)
Could you please elaborate more your answer adding a little more description about the solution you provide?Tribadism

© 2022 - 2024 — McMap. All rights reserved.