得到真正的g.co网址

时间:2012-03-30 05:25:28

标签: google-maps

我登上了我的数据库,分配了这个网址

http://g.co/maps/8s4th

但我需要获得真正的googlpe地图地址,以便我可以嵌入它。有人知道怎么做吗?

我需要真正的那个

http://maps.google.com.mx/maps?q=monterrey&hl=es&ie=UTF8&sll=23.625269,-102.540613&sspn=26.141296,41.616211&hnear=Monterrey,+Nuevo +莱昂& T公司= H&安培; Z = 12

2 个答案:

答案 0 :(得分:1)

向g.co进行GET,查看位置:在您收到的301回复中。

答案 1 :(得分:0)

很明显有了ajax我可以使用PHP,但我用PHP做这个我留下代码我希望它有所帮助

<?
$url = "http://g.co/maps/rdu3e";
$response = get_headers($url, 1);
print_r($response['Location']);
?>