Google Maps Embed - Remove Place Card

Viewed 73956

I'm using the new Google maps embed code (iFrame) to add a small map to my website, but I can't hide the new address box in the top left corner (see image below).

http://i.imgur.com/JOVXkra.jpg

I have generated the map code by clicking the "Share and embed map" option (see image below), but I'm wondering if I need to use the full API to achieve this.

http://i.imgur.com/xxl25Ga.png

All of the resources I've found so far just discuss the old embedding version and disabling the information balloon which is not the same, and the only clue I've got is that the HTML class of the box is called "place-card" but searching is still bringing me nothing.

Any help or point in the right direction would be much appreciated.

3 Answers

You can remove placecard & map controls (map type & zoom icons)

<div style="width: 100%; overflow: hidden; height: 350px;">
    <iframe width="100%" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"  style="border:0; margin-top: -150px;"  src="https://maps.google.com/maps?f=l&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Walt+Disney+World+Resort&amp;aq=t&amp;sll=28.38545007745952, -81.56377744291994&amp;ie=UTF8&amp;ll=28.38545007745952, -81.56377744291994&amp;z=17&amp;om=0&amp;iwloc=addr&amp;iwd=0&amp;layer=0&amp;output=embed"></iframe></small>
    </div>

Note: you can add/remove parameters if you want

https://moz.com/ugc/everything-you-never-wanted-to-know-about-google-maps-parameters

you can try this:

  1. Go to https://www.maps.ie/coordinates.html to get your Coordinates
  2. Go to Google Maps and enter those coordinates (comma separated like this: 33.319663, -111.89780100000002)
  3. Click on Share (located on the left)
  4. Click on Embed Map
  5. Configure the size of map that you want
  6. Copy the html

Your iframe will be something like this:

<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3333.967410377096!2d-111.89998968453055!3d33.31966746342457!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMzPCsDE5JzEwLjgiTiAxMTHCsDUzJzUyLjEiVw!5e0!3m2!1sen!2sus!4v1516690469899" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
Related