Skip to content

Instantly share code, notes, and snippets.

@vifito
Last active March 18, 2016 23:47
Show Gist options
  • Save vifito/ea2cb3286c80f51e6da9 to your computer and use it in GitHub Desktop.
Save vifito/ea2cb3286c80f51e6da9 to your computer and use it in GitHub Desktop.
Link to destination Google Maps
<?php
$lat = 42.6735947;
$lng = -8.1533898;
$z = 15;
$point = $lat . ',' . $lng;
$hl = 'gl';
$t = 'm';
?>
<a href="https://www.google.es/maps/?ll=<?php echo $point ?>&amp;z=<?php echo $z ?>&amp;t=<?php echo $t ?>&amp;hl=<?php echo $hl ?>&amp;daddr=<?php echo $point ?>"></a>
@vifito
Copy link
Author

vifito commented Mar 18, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment