gpt4 book ai didi

javascript - 为什么我的 Chrome map 信息窗口中出现滚动条?

转载 作者:可可西里 更新时间:2023-11-01 02:21:12 32 4
gpt4 key购买 nike

这是 JavaScript:

$(document).ready(function(){

//set location of san antonio
var san_antonio = new google.maps.LatLng(29.4, -98.544);

//set infowindow
var infoWindow;

//object literal containing the properties
var options = {
zoom: 9,
center: san_antonio,
mapTypeId: google.maps.MapTypeId.ROADMAP
}

//create the map
var map = new google.maps.Map(document.getElementById('map'), options);

//create marker
var marker = new google.maps.Marker({
position: san_antonio,
map:map,
title: "san antonio"
});


//add 'click' event listener
google.maps.event.addListener(marker, 'click', function(){

//creates infowindow if it already doesn't exist
if (!infoWindow){
infoWindow = new google.maps.InfoWindow();
}

//create content for infowindow
var content = '<div id="information">'+'<img src="http://a1.twimg.com/profile_images/1549555880/Screenshot.png"/>'+'</div>'

//set content of the infowindow.
infoWindow.setContent(content);

//open infowindow on click of marker
infoWindow.open(map,marker);

//ends the event listener
});


//ends the DOM loader
});

在 chrome 中,信息窗口弹出时出现不需要的滚动条。如果您查看右下角,您会注意到也有一点失真。

在 Chrome 中

my infowindow rendering in chrome

信息窗口在 Firefox 中看起来很棒。昨晚我在台式机上工作时没有遇到这个问题,所以我认为我的 chrome 安装可能在我的笔记本电脑上被破坏了。你怎么看?这是它在 FireFox 中的样子:

在 FireFox 中

einfowindow rendering in firefox

我尝试做 div#information{overflow:hidden},但没有任何改变然后我尝试执行 div#information{overflow:hidden;height:500px;background-color:green;},然后滚动条变长了。这告诉我信息窗口作为它自己的 div 并且“信息”div 的高度导致信息窗口的滚动条变大。 enter image description here


最佳答案

尝试添加这个 css 样式:

div#information{
overflow: hidden;
}

关于javascript - 为什么我的 Chrome map 信息窗口中出现滚动条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7769765/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com