无法在我的网站上显示Google地图。

时间:2012-08-16 18:06:56

标签: php javascript google-maps google-maps-api-3

我正在拿我的lat&长途:

$geocode = file_get_contents('http://maps.google.com/maps/api/geocode/json?address=' . $g_location . '&sensor=true');
$output= json_decode($geocode);

$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;

我返回正确的lat&长。所以现在我尝试构建我的地图:

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCTQqh2ksk9ZTqSfx-_ki_lHj-q32kYIY8&sensor=false">    </script>
<script language="JavaScript">
 var map;
      function initialize() {
        var mapOptions = {
          zoom: 8,
          center: new google.maps.LatLng(<?=$lat?>, <?=$long?>),
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        map = new google.maps.Map(document.getElementById('map_canvas'),
            mapOptions);
      }

      google.maps.event.addDomListener(window, 'load', initialize);      
</script>

HTML:

div id="map_canvas"></div>

什么都没有出现。我错过了什么吗?

感谢。

2 个答案:

答案 0 :(得分:1)

您的&lt; div id="map_canvas">需要大小,(宽度和高度),

<div id="map_canvas" style="width:400px;height:300px"></div>

答案 1 :(得分:0)

添加以下内容。您还需要在正文中的onload函数中使用initialize()

<body onload="initialize()">
    <div id="map_canvas" style="width: 500px; height: 300px"></div>
</body>

请参阅谷歌地图游乐场示例

http://code.google.com/apis/ajax/playground/?exp=maps#map_simple