Ver original$direccion = urlencode('Duquesa Villahermosa, 140, Zaragoza'); $data = json_decode(file_get_contents("http://maps.google.com/maps/api/geocode/json?address={$direccion}")); $location = $data->results[0]->geometry->location; var_dump("Latitud: {$location->lat}", "Longitud: {$location->lng}");