0

我有非工作谷歌地图。可能是什么问题?

获取地理坐标的代码:

$gmap = file_get_contents ("http://maps.google.com/maps/geo?q=". urlencode($row['gps']));
$json = json_decode ($gmap);
$suradnice = $json->Placemark[0]->Point->coordinates;
$gps = $s[1] .",". $s[0];

嵌入代码:

<iframe width='295' height='360' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/?q={$gps}&amp;ie=UTF8&amp;t=h&amp;z=12&amp;vpsrc=0&amp;ll={$gps}&amp;output=embed'></iframe>
4

2 回答 2

0

我相信您想使用此版本的 Google API 作为 $file_get_contents 的参数,其中 $lat 和 $lng 是纬度和经度。

" http://maps.googleapis.com/maps/api/geocode/json?latlng= $lat,$lng&sensor=false"

如果您使用的是地址,请执行以下操作:

http://maps.googleapis.com/maps/api/geocode/json?address= $addr&sensor=false”

您可以在此处找到文档: https ://developers.google.com/maps/documentation/geocoding/

于 2013-05-25T18:47:55.913 回答
0

这个过程称为“地理编码”。这是谷歌的API

于 2013-04-10T09:51:32.283 回答