- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一个新项目使用 Google map ,但当我打开 infoWindow
时,我的 map 变得很奇怪。
见下图:
有人知道这个问题吗?
这是我的 map 初始化代码:
$(document).ready(function(){
function initialize() {
var myLatlng = new google.maps.LatLng(59.398554, 5.486206);
var mapOptions = {
draggable: true,
zoomControl: true,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.HYBRID]
}, // here´s the array of controls
disableDefaultUI: true, // a way to quickly hide all controls
scrollwheel: false,
zoom: 13,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var contentString = '<div id="content">'+
'<div id="siteNotice">'+
'</div>'+
'<h2 id="firstHeading" class="firstHeading">FjørSilkeBris</h2>'+
'<div id="bodyContent">'+
'<p>Førland, 5570 Aksdal</p>'+
'<p>481 49 246 (Mobil)</p>'+
'<p>Facebook: <a href="https://www.facebook.com/FjorSilkeBris">FjørSilkeBris på facebook.</a></p>'+
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Fjørsilkebris"
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
};
window.onload = function () {
initialize();
}
});
最佳答案
我遇到了同样的问题。
问题是,您页面上的某些 CSS 很可能将 img
元素的 max-width
属性设置为 100%。这会破坏 map 上信息窗口的 css。
您可以做的是覆盖 map Canvas div 示例的 img 最大宽度:
#divMap img { max-width: none; }
这对我有用
关于javascript - 当我打开 infoWindow (UTF-8) 时,Google map 变得很奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12725998/
我在 android 代码中使用 asmack XMPP。我可以正常登录 XMPP 服务器,但是当我尝试创建新用户时出现问题。我想要实现的是: 以管理员身份登录。 创建一个新用户。 从管理员注销。 以
这是我的标记页面,其中有一个按钮可以从数据库中搜索数据并显示在网格中 这是我背后的代码 if (!IsPostBack) { LblInfo.Text = "Page Load
当我多次将相同的 float 值插入到我的集合中时,本应花费恒定时间的 x in s 检查变得非常慢。为什么? 时序x in s的输出: 0.06 microseconds 0.09 mi
我有一个小型聊天客户端,可以将所有历史记录存储在 sqlite 数据库中。当用户单击我的应用程序中的 history 选项卡时,我的应用程序会获取所有相关历史记录并将其显示在 QWebView 中。我
我是一名优秀的程序员,十分优秀!