Skip to content

Instantly share code, notes, and snippets.

@madeinnordeste
Last active October 4, 2022 13:30
  • Star 12 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save madeinnordeste/3250820 to your computer and use it in GitHub Desktop.
PHP - Get Geocode (lat, long) from Address
<?php
$address = 'avenida+gustavo+paiva,maceio,alagoas,brasil';
$geocode = file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false');
$output= json_decode($geocode);
$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;
?>
@sajaddp
Copy link

sajaddp commented Jul 22, 2017

Hello
It is a good code.
Is there a way to get coordination of several countries at the same time?

@amitm13
Copy link

amitm13 commented Oct 6, 2017

nice thanks you

@Angelonyman
Copy link

thanks, it is really simple and generate the code I need...

aqui e brasil :)

@mycarrysun
Copy link

If anyone looking for the timezone for an address (that's how I found this gist) I created another gist https://gist.github.com/mycarrysun/e4dfe947dc8ce7421bb2fd81eeed0093

@jharriot
Copy link

jharriot commented Apr 21, 2018

UPDATED;

`<?php

$address = "1600 Pennsylvania Ave NW Washington DC 20500";
$address = str_replace(" ", "+", $address);
$region = "USA";

$json = file_get_contents("http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false&region=$region");
$json = json_decode($json);

$lat = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lat'};
$long = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lng'};
echo $lat."
".$long;

?> `

@samanshahzadi
Copy link

Hello

I am getting this message when I am applying the above function

{
"error_message" : "You have exceeded your daily request quota for this API. We recommend registering for a key at the Google Developers Console: https://console.developers.google.com/apis/credentials?project=_",
"results" : [],
"status" : "OVER_QUERY_LIMIT"
}

Can someone help me?

Thanks

@Burshyn
Copy link

Burshyn commented Aug 15, 2018

You have exceeded your daily request quota for this API!
We recommend registering for a key at the Google Developers Console: https://console.developers.google.com/apis/credentials?project=_"

@djtetsu
Copy link

djtetsu commented Oct 25, 2018

STRONGLY SUGGEST AGAINST GOOGLE MAPS!

They jacked up prices ridiculously and this will be a waste of time. Google "Google Maps Price hike". Our monthly fee went from negligible to over $700.

We are looking at developer dot mapquest dot com for a solution

@mpcleverdon
Copy link

mpcleverdon commented Nov 1, 2018

check out open street map and/or leaflet it has everything you need

@mhmtcbn
Copy link

mhmtcbn commented Aug 7, 2019

UPDATED;

`<?php

$address = "1600 Pennsylvania Ave NW Washington DC 20500";
$address = str_replace(" ", "+", $address);
$region = "USA";

$json = file_get_contents("http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false&region=$region");
$json = json_decode($json);

$lat = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lat'};
$long = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lng'};
echo $lat."
".$long;

?> `

Hello, I want to get the postcode, I was able to get the postcode using the code below. The order of the postal code changes when the street address changes. Another information comes in place of the postal code.

$postalcode = $json->{'results'}[0]->{'address_components'}[6]->{'short_name'};

I couldn't solve the problem. {'address_components'}[6] Number is constantly changing 6, 5, 4

@bagastone
Copy link

i get some error for this code. can you help me please

Notice: Undefined offset: 0 in C:\xampp\htdocs\maps\index.php on line 10
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 10
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 10
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 10
Notice: Undefined offset: 0 in C:\xampp\htdocs\maps\index.php on line 11
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 11
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 11
Notice: Trying to get property of non-object in C:\xampp\htdocs\maps\index.php on line 11

@shamiul700
Copy link

Now It require api key.
Is there any Way to get lat long from address for free?

@RaccoonCast
Copy link

Now It require api key.
Is there any Way to get lat long from address for free?

Use OSM.

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