Convert Address to Google Maps Iframe Embed

Used in HTML, this will convert a hard-coded address into an embedded map within an iframe:

<iframe src="https://www.google.com/maps?q=[ADDRESS]&output=embed"></iframe>

Replace [Address] with the street information:

<iframe src="https://www.google.com/maps?q=100 Main Street, Winnipeg, Manitoba&output=embed"></iframe>

Works within the loop and when gathering user meta:

<iframe src="https://www.google.com/maps?q=<?php echo get_usermeta($author_id, 'billing_address_1'); ?> <?php echo get_usermeta($author_id, 'billing_city'); ?> <?php echo get_usermeta($author_id, 'billing_state'); ?> <?php echo get_usermeta($author_id, 'billing_postcode'); ?>&output=embed"></iframe>

 

Leave a Reply

katherine as a flat graphic icon

About Me

I’m an African / Ojibwe First Nations Web Developer living in Winnipeg, Manitoba.

Visit the Tips and Blog to see what I’m working on.