Last active
November 25, 2021 11:16
-
-
Save clnmcgrw/9086505 to your computer and use it in GitHub Desktop.
Google Maps API Geocode Example - PHP/JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// address to map | |
$map_address = ""; | |
$url = "http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=".urlencode($map_address); | |
$lat_long = get_object_vars(json_decode(file_get_contents($url))); | |
// pick out what we need (lat,lng) | |
$lat_long = $lat_long['results'][0]->geometry->location->lat . "," . $lat_long['results'][0]->geometry->location->lng; | |
?> | |
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
<div id="map_canvas"></div> | |
<script> | |
(function() { | |
function initialize() { | |
var myLatlng = new google.maps.LatLng(<?php echo $lat_long; ?>), | |
mapOptions = { | |
zoom: 15, | |
center: myLatlng | |
}, | |
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions), | |
marker = new google.maps.Marker({ | |
position: myLatlng, | |
map: map, | |
title: '<?php echo $map_address; ?>' | |
}); | |
} | |
google.maps.event.addDomListener(window, 'load', initialize); | |
})(); | |
</script> |
Thanks a lot, with a small modification i made it working
Thank you very much!!!!!!! its perfect for me.
A lot of thanks , your script work very good.
how to use geocode in url
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this! A few tips for anyone using this bit of code: