MarkerWithLabel无法正确打印

时间:2013-11-26 06:04:54

标签: javascript google-maps google-maps-api-3

我在地图上放了一些MarkerWithLabel。它们都工作正常但是当我打印地图时它们变得透明。

Map I Browser
Pdf图像文件
PDF file image

我的标记变得透明了 这是我的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;

        }

0 个答案:

没有答案