Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google map showing additional copyright text on some devices

I am developing an Android app which uses Google Maps Android API v2. While testing the app on several devices, I noticed that one device (Galaxy S4) has started displaying extra copyright information along the bottom right corner of the map (in addition to the usual Google logo displayed in the bottom left corner of the map):

Cropped map showing additional copyright text

The extra text

© 2015 Google - Map data © 2015 Google

does not appear on other devices. It also does not appear in the stock Google Maps app on the affected phone.

Does anyone know why this information appears, and why it appears only on some devices? Obscuring the copyright info is not permitted by the Google Maps Terms of Service (refer to the answer by @miselking for more information), but I'd like to understand when it will/won't show so that I can accommodate it in my layout in an appropriate way if necessary. For example, I already use padding at the bottom of the map to avoid covering the Google logo with a legend. The padding moves the extra copyright information up too, with the following (awkward-looking) result:

Copyright text shifted by map padding

I've noticed that this Google video on map padding displays a variant of the copyright text in the bottom right of the map, and also confirms that the copyright text is supposed to be shifted by the map padding. In this case, the copyright information reads

© 2014 Google - Map data © 2014 GBRMPA, Google, MapIT

There is still no indication given as to when this information may or may not appear, however.

like image 780
android Avatar asked Jul 21 '14 07:07

android


People also ask

What are the trademarks of Google Maps?

Our trademarks are our valuable assets, and we want to make sure our users and partners use them correctly. These trademarks include the Google Earth wordmark, Google Maps wordmark, Google Earth logo, Google Maps logo, Google Maps red pin element, Street View wordmark, Street View icon, Pegman wordmark and the Pegman logo.

Can I use Google Maps content in a television commercial?

If you'd like to use Google Maps content in a television commercial, please refer to our guidelines on " Entertainment and Media " to request brand approval. Note that you may not use Google Earth, or Street View imagery in television commercials. You may not use Google Maps, Google Earth or Street View imagery in print advertisements.

Can I use Street View imagery from Google Maps?

These guidelines cover your use of the content – with one exception. There are some particular guidelines regarding your use of Street View imagery available from both Google Maps and Google Earth. Please read the section below for instructions on how Street View imagery may or may not be used.

Where can I use the marks of Google?

as the most prominent elements on your website; on physical merchandise, promotional materials, business cards or business stationery; in product reviews. Please do not modify or mimic our marks. Thanks again for using Google Maps, Google Earth and Street View. Privacy Terms About Google


1 Answers

Well, as per Google Maps Terms of Service section 8.5:

8.5 Proprietary Rights Notices. You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices, Terms of Use links, or Brand Features) that may be affixed to or provided through the Service. Where such notices are not affixed within the Service, you agree to display such notices according to the Maps APIs Documentation.

and 9.4:

9.4 Attribution.

(a) Content provided to you through the Service may contain the trade names, trademarks, service marks, logos, domain names, and other distinctive brand features of Google, its partners, or other third party rights holders of content indexed by Google. When Google provides this attribution, you must display it as provided through the Service or as described in the Maps APIs Documentation and may not delete or in any manner alter these trade names, trademarks, service marks, logos, domain names, and other distinctive brand features.

(b) You agree to include and display the "powered by Google" attribution (and/or any other attribution(s) required by Google as described in the Maps APIs Documentation) conspicuously on the page, in close proximity and adjacent to the Service search box and Google search results. If you use the standard Google search control, or the standard Google search control form, this attribution will be included automatically, and you agree not to modify or obscure this automatically-generated attribution.

(c) You understand and agree that Google has the sole right and discretion to determine whether your attribution(s) are in compliance with the above requirements.

you are obliged to display copyright and trademark notices etc, etc... You could (but shouldn't) try to hide those, there are a couple of solutions (ideas) here and here but I didn't test those, so I cannot tell you if they will work or not. And why they appear on some devices and not on others? Hmm, not sure, who knows what google did, they crazy... :D

like image 101
miselking Avatar answered Sep 19 '22 13:09

miselking