gpt4 book ai didi

javascript - 打印时未显示 Google map

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:50 25 4
gpt4 key购买 nike

我正在尝试使用 Google map API 为内部站点实现简单的路线规划。我想出了以下内容:

http://jsfiddle.net/Hn7U8/6/(如果你的窗口太小,你可能看不到 map )

完整的html代码:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Map</title>
<style>
html, body, #map-canvas{
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<style>
#directions-panel {
height: 100%;
float: right;
width: 390px;
overflow: auto;
}

#map-canvas {
margin-right: 400px;
}

#control {
background: #fff;
padding: 5px;
font-size: 14px;
font-family: Arial;
border: 1px solid #ccc;
box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
display: none;
}

@media print {
#map-canvas {
height: 500px;
margin: 0;
}

#directions-panel {
float: none;
width: auto;
}
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var directionsDisplay;
var directionsService = new google.maps.DirectionsService();

function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer();
var mapOptions = {
zoom: 14,
center: new google.maps.LatLng(48.1448, 11.5580)
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('directions-panel'));

var control = document.getElementById('control');
control.style.display = 'block';
map.controls[google.maps.ControlPosition.TOP_CENTER].push(control);
}

function calcRoute() {
var start;
if((start = document.getElementById('origin').value) == ""){
start = "Bayerstraße 28, München";
}
var selectedMode = document.getElementById('mode').value;
var end = 'Riesstraße, München';
var request = {
origin: start,
destination: end,
travelMode: google.maps.TravelMode[selectedMode]
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}

google.maps.event.addDomListener(window, 'load', initialize);

</script>
</head>
<body onload="calcRoute();">
<div id="control">
<b>Start-Adresse:</b>
<form action="javascript:void(0);" onsubmit="calcRoute();">
<input type="text" id="origin" placeholder="Adresse, Stadt">
</form>
<b>Reiseart: </b>
<select id="mode" onchange="calcRoute();">
<option value="DRIVING">Auto</option>
<option value="WALKING">Laufen</option>
<option value="BICYCLING">Fahrrad</option>
<option value="TRANSIT" selected>Öffentlich</option>
</select>
</div>
<div id="directions-panel"></div>
<div id="map-canvas"></div>
</body>
</html>

一切都如我所愿。如果你插入

street, country/city

例如

Bayerstraße 28, München

使用 slider ,您可以调整您的出行方式(步行、驾车……)

它显示在 map 上,并在右侧显示附加路线信息(时间、距离、...)。

然而,当您尝试打印/预览页面时(我不确定使用 jsfiddle 的重现性有多好)未显示 map 并且您只看到一些灰色(空)字段 看起来像 SO 上引号的背景。附加信息已正确打印/显示。

是什么导致了这个打印问题?

我尝试稍微修改一下 CSS,因为我认为这可能是问题所在,但我没有设法解决问题。

最佳答案

要解决这个问题,您可以在 css 表中添加以下代码:

img { 
max-width: none !important;
}

关于javascript - 打印时未显示 Google map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20611182/

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