3

我正在尝试使用 Google 地图 JSON 请求从地址获取纬度和经度,并在页面上显示地图。

从我的请求创建的 URL 可以正常工作,并使用 JSON 信息创建一个有效的 URL:

http://maps.google.com/maps/api/geocode/json?address=<?php echo $_GET['q'];?>&sensor=false

但我的页面上不断出现错误:

ReferenceError: file_get_contents 未定义

什么都没有显示。这是完整的 HTML 和 JS 代码:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places&language=iw"></script>
<script>
$geocode=file_get_contents("http://maps.google.com/maps/api/geocode/json?address=<?php echo     $_GET['q'];?>&sensor=false");

$output= json_decode($geocode);

$lat = $output.results[0].geometry.location.lat();
$lng = $output.results[0].geometry.location.lng();

var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(32.069373, 32.069373), // numbers are here for testing
mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById('map-canvas'),
  mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="map-canvas"></div>

请注意,这allow_url_fopen = On是在我的 php.ini 中。

4

2 回答 2

11

解决了,问题出在脚本标签内的 php 代码上。我将第一部分更改为:

<?php 
$geocode=file_get_contents("http://maps.google.com/maps/api/geocode/json?address=".$_GET['q']."&sensor=false");

$output= json_decode($geocode);

$lat = $output->results[0]->geometry->location->lat;
$lng = $output->results[0]->geometry->location->lng;
?>
于 2013-07-14T08:10:06.980 回答
1

虽然我参加聚会有点晚了,但这是我在 Google 的地理编码 API 之上编写的一个地理编码库,它可以让你从地址中得到很多东西

http://github.com/hugobots/php-geocode

于 2015-01-04T15:02:55.597 回答