Does anyone know if there is a way to move the "Maps" and "Legal" text in the Map SwiftUI view? App Store Guidelines require that the text be shown, but if you are trying to add some type of sheet or view overlay for some of the map, I can't seem to find a way to add extra bottom padding to this text.
You can leverage EdgeInsets E.g .padding(EdgeInsets(top: 0, leading: 0, bottom: 50, trailing: 0)). This will also inset the area into which the coordinateRegion or mapRect is fit.