我有一个lat和long,并希望通过http请求将这些内容发送到谷歌地图并检索英国的邮政编码。
这可能吗?
答案 0 :(得分:0)
$ json = file_get_contents(“http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=manchester+uk”);
$ json = json_decode($ json);
$ json是一个数组;因此,您可以访问任何数据 http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=manchester+uk
如果您需要查找lat和lng,可以用以下内容替换url: http://maps.googleapis.com/maps/api/geocode/json?latlng=53.39990299999999,-2.30009690&sensor=false