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.
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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With