I want to retrieve points of interests of a place/country through google places api say \'points of interests in london\'. I want the results to be same as I google search
Please tied to use google API
$url= "https://maps.googleapis.com/maps/api/place/textsearch/json?query=dubai+point+of+interest&language=en&radius=2000&key=API_KEY";
$json=file_get_contents($url);
$obj = json_decode($json);
print_r($obj);