The question is quite old now, but I had a similar issue where I needed to display the map in a specific aspect ratio.
What helped me was adding the following styles to the containing element for the google map:
#map {
width: 100%;
aspect-ratio: 4 / 3;
}
Hope this might help some of you. :)