Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from mattradford/acf_map_fallback.php
Created March 27, 2025 18:17
Show Gist options
  • Save dgoze/6594bf033a8b0fd7b485631283cbfed4 to your computer and use it in GitHub Desktop.
Save dgoze/6594bf033a8b0fd7b485631283cbfed4 to your computer and use it in GitHub Desktop.
ACF Google Map static image, for fallback
<img src="http://maps.google.com/maps/api/staticmap?center=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&markers=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&zoom=9&size=360x300&sensor=FALSE" />
<div class="acf-map--mobile" style="background-image:url('http://maps.google.com/maps/api/staticmap?center=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&markers=<?php echo $location['lat']; ?>,<?php echo $location['lng']; ?>&zoom=9&size=360x300&sensor=FALSE');"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment