放置标记时,Google地图中出现灰色矩形

时间:2013-03-27 17:59:52

标签: javascript google-maps-api-3

我的Python / GAE网络应用中有一个谷歌地图,当我单独放置地图而没有引脚时,它会正确显示。但是,当我有一个标记放在上面时,地图的一大块用灰色矩形擦掉。 enter image description here

这是我的JS代码:

//Places a Google Map with a pin at the coordinates of the stopimap
 function initialize(lat, lng) {                                 
    var mapProp = {
       center:new google.maps.LatLng(37.761586,-122.4477),
       zoom:12,
       mapTypeId:google.maps.MapTypeId.ROADMAP
    };

    var point=new google.maps.LatLng(lat,lng)
    var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
    marker = new google.maps.Marker({
        position: point,
        map: map,
    }); 
}//initialize

0 个答案:

没有答案