How to get Longitude and Latitude from an Address using PHP OR get lat long by address using php
How to get Longitude and Latitude from an Address using PHP OR get lat long by address using php
<?php $geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='india'+'noida'+'sector'+'63'+'&sensor=false');
$output= json_decode($geocode);
$latitude = $output->results[0]->geometry->location->lat;
$longitude = $output->results[0]->geometry->location->lng;
?>
Use your lan long where you want...
<?php $geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='india'+'noida'+'sector'+'63'+'&sensor=false');
$output= json_decode($geocode);
$latitude = $output->results[0]->geometry->location->lat;
$longitude = $output->results[0]->geometry->location->lng;
?>
Use your lan long where you want...
Comments
Post a Comment