1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php function get_lat_long($address, $region){ $address = str_replace(" ", "+", $address); $json = file_get_contents("http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false®ion=$region"); $json = json_decode($json); // print_r($json);die; $lat = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lat'}; $long = $json->{'results'}[0]->{'geometry'}->{'location'}->{'lng'}; return $lat.','.$long; } $latlong = get_lat_long("Konutkent Mahallesi 3029 Cadde ", "Ankara"); echo $latlong; ?> |
Google Maps Adresten Konum Bilgilerini Alma (PHP)
Yorumları nasıl çekeriz
aldığımız konum bilgilerini nasıl yazdırabilriz ayrıca bu kodları nereye yerleştirecez