According to the google maps attribution rule , I must show the copyrights of Google and the map providers when displaying the map in the Android application. Copyright is usually displayed at the bottom of the map.
The problem is that I have a circular widget at the bottom of my application that hides some copyright notices.
This is why I want to move copyright to the top of the map using
GoogleMap.setPadding (0, 0, 0, mapViewHeight - copyRightFontHeight) .
The changes that occur with setPadding are as follows:
- Camera movements through API calls or button presses (e.g., compass, my location, zoom buttons) will refer to the augmented area.
- getCameraPosition () will return the center of the filled area.
- Projection.getVisibleRegion () will return the populated area.
- User interface controls will be offset from the edge of the container by the specified number of pixels.
But I want standard behavior for all of these functions (the ones you get without filling)!
So or: How can I only move the copyright without changing the behavior of these functions?
Or: How to make these functions work fine, beyond the boundaries of the add-on?
source
share