我的Python / GAE网络应用中有一个谷歌地图,当我单独放置地图而没有引脚时,它会正确显示。但是,当我有一个标记放在上面时,地图的一大块用灰色矩形擦掉。
这是我的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