Skip to content

Instantly share code, notes, and snippets.

@bruno-barros
Forked from nmyers/acf-map.php
Created October 13, 2015 03:46
Show Gist options
  • Save bruno-barros/df730072d08971b9c6ef to your computer and use it in GitHub Desktop.
Save bruno-barros/df730072d08971b9c6ef to your computer and use it in GitHub Desktop.
ACF Static google map with link
<?php
$location = get_field('location');
if( !empty($location) ):
?>
<a href="http://www.google.com/maps/preview#!q=<?=urlencode( $location['address'] )?>">
<img src="http://maps.googleapis.com/maps/api/staticmap?center=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&zoom=15&format=png&sensor=false&size=397x297&maptype=roadmap&visual_refresh=true&style=visibility:off&style=feature:road|element:geometry|visibility:simplified&style=feature:landscape|element:geometry|visibility:simplified&style=element:labels|visibility:on&markers=color:red|<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>"/>
</a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment