我的 Python/GAE webapp 中有一个谷歌地图,当我自己放置地图时,没有大头针,它可以正确显示。但是,当我在上面放置一个标记时,地图的很大一部分会被一个灰色矩形抹去。
这是我的 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