I have a built-in Google Map on a web page. I had to use a map attached to my gmail account because I use several locations.
On the map there is a partially opaque bar at the top, which I want to get rid of. Each time a map loads, the panel has a different (unique) class, so I cannot hide it using CSS.
I even tried some kind of jQuery, because my brother always had a .gm-style class before it, so I tried this:
$(function() {
but it didn’t work.
Is there some simple way that I am missing to hide this bar?

Shawn source share