我正在尝试使用 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 中。