Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Location of Google Logo on Map in iOS Application

Is there an approval process that I must follow in order to move the "Google" that is in the left-hand corner to another area of the map? I have an application where my UI will cover these words and would like to display them in another location on the Google map. I know how to do this in iOS, just don't know if there are legal concerns with Google in doing so.

enter image description here

like image 290
taraloca Avatar asked Jan 16 '12 20:01

taraloca


2 Answers

Google Maps now provides the ability to modify the outer padding of the map, specifically for the purpose of allowing the developer to move map controllers, recenter the map, and un-obscure legal and copyright information that may otherwise be covered by other user designed UI elements.

Example:

// Insets are specified in this order: top, left, bottom, right
UIEdgeInsets mapInsets = UIEdgeInsetsMake(100.0, 0.0, 0.0, 300.0);
GMSMapView *mapView_;
mapView_.padding = mapInsets;

Legal:

Note: As per the Google Maps API terms of service, your application must not remove or obscure the Google logo or copyright notices. Map Padding allows you to reposition these elements if necessary. If you display a custom UI at the bottom of the map, add padding to the bottom of the map so that the logo and legal notices will always be visible.

Google docs: https://developers.google.com/maps/documentation/ios/map#map_padding

I'm not certain if this will still violate Apple's legal terms but Google is clearly OK with moving the logo as long as it's still at the bottom left and not obscured.

like image 154
Matt Wielbut Avatar answered Oct 19 '22 20:10

Matt Wielbut


Yes you can by buying google api business license https://developers.google.com/maps/documentation/business/ and this will not violate google terms or App store review Guidelines

like image 20
Bakly Avatar answered Oct 19 '22 19:10

Bakly