Get lat/lon from google maps url ftid (hex)
PHP Snippet 1:
!1s0x6ad63fbf56e24c27:0xe665b3308d32f379
PHP Snippet 2:
0xe665b3308d32f379 ---hex-to-dec---> 16601872622479930233
PHP Snippet 3:
function ftid_to_latlong($ftid)
{
$fetch = curl_request("https://www.google.com/maps?ftid=$ftid");
preg_match("/\"$ftid\",.*?(\d+\.\d+),(\d+\.\d+)/", $fetch, $geo);
return [$geo[1], $geo[2]];
}