我在地图上放了一些MarkerWithLabel。它们都工作正常但是当我打印地图时它们变得透明。
Pdf图像文件
我的标记变得透明了
这是我的CSS和标记
var marker1 = new MarkerWithLabel({
position: Location,
draggable: false,
raiseOnDrag: true,
map: map,
labelContent: ' Text ',
labelAnchor: new google.maps.Point(22, 0),
labelClass: "labels", // the CSS class for the label
labelStyle: { opacity: 0.99 },
icon: {}
});
.labels
{
color: black;
background-color: white;
font-family: "Lucida Grande" , "Arial" , sans-serif;
font-size: 15px;
font-weight: bold;
text-align: center;
font-style:normal;
border: 1px solid grey;
white-space: nowrap;
border-radius:3px;
}