谷歌地图显示问题?

时间:2014-04-24 10:54:32

标签: php google-maps

大家好,我有一个关于在下面的php文件中显示谷歌地图的问题是图像如何显示:enter image description here

我想要完整的地图,如下图所示:

enter image description here

任何机构都可以解决我的问题

我在下面显示的php文件中使用了代码:

<script src="http://maps.google.com/maps/api/js?sensor=false" 
type="text/javascript"></script> 

<div id="map" style="width: 100%; height: 400px; position: relative; left: 0; bottom: 0; float: left;"></div>

<script type="text/javascript">

    var address = 'holon';

    var map = new google.maps.Map(document.getElementById('map'), {
        mapTypeId: google.maps.MapTypeId.TERRAIN,
        zoom: 14
    });

    var geocoder = new google.maps.Geocoder();

    geocoder.geocode({
        'address': address
    },
    function(results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            new google.maps.Marker({
                position: results[0].geometry.location,
                map: map
            });
            map.setCenter(results[0].geometry.location);
        }
    });

</script> 

0 个答案:

没有答案